Files
gerrit/gerrit-gwtui-common/BUILD
David Ostrovsky 0e121132f5 Bazel: Simplify diffy_logo rules
There is a regression in Bazel 0.3.2 release: [1] that prevents creating
a symbolic link to previously built artifact. In this case we don't
really need to do that, as we can depend on previously built library and
do not need to create a zip from java_library and import it again as
java_library.

[1] https://github.com/bazelbuild/bazel/issues/1966

Change-Id: I16a62e2fbb3e2d1de377eeef70061298bb2bb745
2016-10-24 08:41:49 +00:00

61 lines
1.4 KiB
Python

load('//tools/bzl:genrule2.bzl', 'genrule2')
load('//tools/bzl:java.bzl', 'java_library2')
load('//tools/bzl:junit.bzl', 'junit_tests')
load('//tools/bzl:gwt.bzl', 'gwt_module')
EXPORTED_DEPS = [
'//gerrit-common:client',
'//gerrit-gwtexpui:Clippy',
'//gerrit-gwtexpui:GlobalKey',
'//gerrit-gwtexpui:Progress',
'//gerrit-gwtexpui:SafeHtml',
'//gerrit-gwtexpui:UserAgent',
]
DEPS = ['//lib/gwt:user']
SRC = 'src/main/java/com/google/gerrit/'
gwt_module(
name = 'client',
srcs = glob(['src/main/**/*.java']),
gwt_xml = SRC + 'GerritGwtUICommon.gwt.xml',
resources = glob(
['src/main/**/*'],
exclude = [SRC + 'client/**/*.java'] +
[SRC + 'GerritGwtUICommon.gwt.xml']
),
exported_deps = EXPORTED_DEPS,
deps = DEPS,
visibility = ['//visibility:public'],
)
java_library2(
name = 'client-lib',
srcs = glob(['src/main/**/*.java']),
resources = glob(['src/main/**/*']),
exported_deps = EXPORTED_DEPS,
deps = DEPS,
visibility = ['//visibility:public'],
)
java_library(
name = 'diffy_logo',
resources = glob(['src/main/resources/com/google/gerrit/client/diffy*.png']),
data = [
'//lib:LICENSE-diffy',
'//lib:LICENSE-CC-BY3.0-unported',
],
visibility = ['//visibility:public'],
)
junit_tests(
name = 'client_tests',
srcs = glob(['src/test/java/**/*.java']),
deps = [
':client',
'//lib:junit',
'//lib/gwt:dev',
'//lib/jgit/org.eclipse.jgit:jgit',
],
visibility = ['//visibility:public'],
)