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
		
			
				
	
	
		
			19 lines
		
	
	
		
			344 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			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',
 | 
						|
]
 |