Buck: Merge deps and compile_deps parameters in gwt_module() rule

After migration to Buck's own gwt_binary() rule, gwt module libraries
must contain compiled classes. That makes the differentiation between
deps and compile_deps unnecessary.

Change-Id: I26fd741d566709a4d56b6e9623766012279903e4
This commit is contained in:
David Ostrovsky
2014-05-17 07:44:31 +02:00
committed by Shawn Pearce
parent 06e069cfcc
commit 834708c8ea
8 changed files with 11 additions and 20 deletions

View File

@@ -4,7 +4,7 @@ gwt_module(
name = 'client',
srcs = glob([SRC + 'client/**/*.java']),
gwtxml = SRC + 'GerritGwtUICommon.gwt.xml',
compile_deps = ['//lib/gwt:user'],
deps = ['//lib/gwt:user'],
visibility = ['PUBLIC'],
)