gerrit/tools/gwt-constants.defs
David Ostrovsky 5862341e54 Add ow2-asm dependencies for GWT plugins
In GWT 2.7 asm isn't shipped any more in gwt-dev JAR. In Ib8f9ed0c7 asm
dependency was added as transitive dependency to gwt_binary() rule
invocation. Unfortunately the gerrit plugin code path was missed, thus
the plugins that make use of GWT module cannot be compiled any more.

This bug wasn't noticed, because no core plugins make use of GWT
modules.

Change-Id: Id388caf119887263863c4829c7ada4e1fa94eb85
2014-12-19 01:11:21 +00:00

19 lines
344 B
Plaintext

GWT_JVM_ARGS = ['-Xmx512m']
GWT_COMPILER_ARGS = [
'-XdisableClassMetadata',
'-XdisableCastChecking',
]
GWT_COMMON_DEPS = [
'//lib/ow2:ow2-asm',
'//lib/ow2:ow2-asm-analysis',
'//lib/ow2:ow2-asm-util',
'//lib/ow2:ow2-asm-tree',
]
GWT_PLUGIN_DEPS = GWT_COMMON_DEPS + [
'//gerrit-plugin-gwtui:gwtui-api-lib',
'//lib/gwt:user',
]