Files
gerrit/lib/gwt/BUILD
David Ostrovsky 2502fab15a Bazel: Implement GWT UI build for the plugins
TEST PLAN:

  $ bazel build plugins/cookbook-plugin

Deploy to the server site and verify that it works.

Change-Id: I98af807f9c92ba4ed7efad332d8fdee407bb8ce6
2016-11-15 15:29:13 -08:00

39 lines
801 B
Python

[java_library(
name = n,
exports = ['@%s//jar' % n.replace("-", "_")],
visibility = ["//visibility:public"],
data = ['//lib:LICENSE-Apache2.0'],
) for n in [
'ant',
'colt',
'dev',
'javax-validation',
'jsinterop-annotations',
'tapestry',
'user',
'w3c-css-sac',
]]
java_library(
name = 'user-neverlink',
exports = ['@user//jar'],
visibility = ['//visibility:public'],
neverlink = 1,
data = ['//lib:LICENSE-Apache2.0'],
)
java_library(
name = 'javax-validation_src',
exports = ['@javax_validation//src'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
)
java_library(
name = 'jsinterop-annotations_src',
exports = ['@jsinterop_annotations//src'],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
)