Modify license_map rule to: - Accept more than 1 targets - Add '--asciidoctor' option to generate asciidoctor txt file - Add support for multiple licenses for a single target (diffy_logo) Also add test_license.sh for license_test rule to handle special DO_NOT_DISTRIBUTE exceptions. TESTED: bazel build Documentation:licenses.txt bazel test gerrit-pgm:pgm_license_test bazel test gerrit-gwtui:ui_module_license_test Change-Id: Ic64b227fea34882721e6e064b1520cd9a4d5d4a4
		
			
				
	
	
		
			16 lines
		
	
	
		
			392 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			392 B
		
	
	
	
		
			Python
		
	
	
	
	
	
load('//tools/bzl:gwt.bzl', 'gwt_module')
 | 
						|
load('//tools/bzl:genrule2.bzl', 'genrule2')
 | 
						|
load('//tools/bzl:license.bzl', 'license_test')
 | 
						|
load(':gwt.bzl', 'gwt_binary', 'gwt_genrule', 'gen_ui_module')
 | 
						|
 | 
						|
gwt_genrule()
 | 
						|
gwt_genrule('_r')
 | 
						|
 | 
						|
gen_ui_module(name = 'ui_module')
 | 
						|
gen_ui_module(name = 'ui_module', suffix = '_r')
 | 
						|
 | 
						|
license_test(
 | 
						|
  name = "ui_module_license_test",
 | 
						|
  target = ":ui_module",
 | 
						|
)
 |