
Tested: verified that polygerrit-ui/app:polygerrit_ui zip contain same files for bazel and buck. Change-Id: I5fb1abbc6e68a593d6af0b7b1811608eb11f7e4c
25 lines
656 B
Python
25 lines
656 B
Python
package(
|
|
default_visibility=["//visibility:public"]
|
|
)
|
|
|
|
load("//tools/bzl:js.bzl", "bower_component_bundle")
|
|
load('//tools/bzl:genrule2.bzl', 'genrule2')
|
|
|
|
bower_component_bundle(
|
|
name = "polygerrit_components",
|
|
deps = [
|
|
'//lib/js:es6-promise',
|
|
'//lib/js:fetch',
|
|
# TODO(hanwen): this is inserted separately in the UI zip. Do we need this here?
|
|
'//lib/js:highlightjs',
|
|
'//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',
|
|
])
|