Update Buck

java_library() now accepts provided_deps argument which replaces
our custom use of java_library2().

This change replaces compile_deps with provided_deps parameter in
gerrit_{plugin,extension} rules. Plugins that are using it must be
updated.

Change-Id: I16d53793da567c958267f91ca203e9cae6c4d02f
This commit is contained in:
Shawn Pearce
2014-05-02 13:22:49 -07:00
committed by David Ostrovsky
parent c798b4cc20
commit 334997292c
15 changed files with 52 additions and 73 deletions

View File

@@ -43,10 +43,10 @@ gwt_module(
visibility = ['PUBLIC'],
)
java_library2(
java_library(
name = 'linker_server',
srcs = glob([SRC + 'linker/server/*.java']),
compile_deps = ['//lib:servlet-api-3_1'],
provided_deps = ['//lib:servlet-api-3_1'],
visibility = ['PUBLIC'],
)
@@ -90,9 +90,9 @@ gwt_module(
visibility = ['PUBLIC'],
)
java_library2(
java_library(
name = 'server',
srcs = glob([SRC + 'server/*.java']),
compile_deps = ['//lib:servlet-api-3_1'],
provided_deps = ['//lib:servlet-api-3_1'],
visibility = ['PUBLIC'],
)