b0735a3c02
GWT 2.7 dev JAR no longer lists org.json:json as a dep in its pom.xml file. Instead it requests ow2-asm. Fix the dep list to drop the difficult org.json:json and put in the requested ow2 JARs. Move ow2-asm deps down onto gwt-dev JAR where they belong. These are required by the compiler code inside gwt-dev, not user code linked with gwt_module(). Change-Id: I54df92daf40d77e61bed4ed4b549981e8d798ca1
15 lines
250 B
Plaintext
15 lines
250 B
Plaintext
GWT_JVM_ARGS = ['-Xmx512m']
|
|
|
|
GWT_COMPILER_ARGS = [
|
|
'-XdisableClassMetadata',
|
|
]
|
|
|
|
GWT_COMPILER_ARGS_RELEASE_MODE = GWT_COMPILER_ARGS + [
|
|
'-XdisableCastChecking',
|
|
]
|
|
|
|
GWT_PLUGIN_DEPS = [
|
|
'//gerrit-plugin-gwtui:gwtui-api-lib',
|
|
'//lib/gwt:user',
|
|
]
|