3c88e386b5
Bug: Issue 3988 Change-Id: I7d1bd4269437b4393d769c06199c5b2cba68b066
33 lines
657 B
Python
33 lines
657 B
Python
include_defs('//lib/js.defs')
|
|
|
|
bower_components(
|
|
name = 'polygerrit_components',
|
|
deps = [
|
|
'//lib/js:fetch',
|
|
'//lib/js:iron-autogrow-textarea',
|
|
'//lib/js:iron-dropdown',
|
|
'//lib/js:iron-input',
|
|
'//lib/js:iron-overlay-behavior',
|
|
'//lib/js:iron-selector',
|
|
'//lib/js:moment',
|
|
'//lib/js:page',
|
|
'//lib/js:polymer',
|
|
'//lib/js:promise-polyfill',
|
|
],
|
|
)
|
|
|
|
genrule(
|
|
name = 'fonts',
|
|
cmd = ' && '.join([
|
|
'cd $TMP',
|
|
'for file in $SRCS; do unzip -q $file; done',
|
|
'zip -q $OUT *',
|
|
]),
|
|
srcs = [
|
|
'//lib/fonts:sourcecodepro',
|
|
'//lib/fonts:opensans',
|
|
],
|
|
out = 'fonts.zip',
|
|
visibility = ['PUBLIC'],
|
|
)
|