To run the tests: bazel test //... To build the Gerrit plugin API, run: bazel build gerrit-plugin-api:plugin-api_deploy.jar To build the Gerrit extension API, run: bazel build gerrit-extension-api:extension-api_deploy.jar TODOs: Licenses Reduce visibility (all public for now) Generate HTML Documentation Core plugins gerrit_plugin() rule to build plugins in tree and standalone modes GWT UI (only gwt_module() skylark rule is provided, no gwt_binary()) PolyGerrit UI WAR Publish artifacts to Maven Central Ask Bazel team to add Gerrit to their CI on ci.bazel.io Contributed-By: Han-Wen Nienhuys <hanwen@google.com> Change-Id: I9a86e670882a44a5c966579cdeb8ed79b1590de3
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
SRC = 'src/main/java/com/google/gerrit/'
 | 
						|
 | 
						|
ANNOTATIONS = [
 | 
						|
  SRC + x for x in [
 | 
						|
    'common/Nullable.java',
 | 
						|
    'common/audit/Audit.java',
 | 
						|
    'common/auth/SignInRequired.java',
 | 
						|
  ]
 | 
						|
]
 | 
						|
 | 
						|
java_library(
 | 
						|
  name = 'annotations',
 | 
						|
  srcs = ANNOTATIONS,
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
gwt_module(
 | 
						|
  name = 'client',
 | 
						|
  srcs = glob([SRC + 'common/**/*.java']),
 | 
						|
  gwt_xml = SRC + 'Common.gwt.xml',
 | 
						|
  exported_deps = [
 | 
						|
    '//gerrit-extension-api:api',
 | 
						|
    '//gerrit-prettify:client',
 | 
						|
    '//lib:guava',
 | 
						|
    '//lib:gwtorm_client',
 | 
						|
    '//lib/jgit/org.eclipse.jgit:jgit',
 | 
						|
    '//lib/joda:joda-time',
 | 
						|
    '//lib/log:api',
 | 
						|
  ],
 | 
						|
  provided_deps = ['//lib:servlet-api-3_1'],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_library(
 | 
						|
  name = 'server',
 | 
						|
  srcs = glob([SRC + 'common/**/*.java'], excludes = ANNOTATIONS),
 | 
						|
  deps = [
 | 
						|
    ':annotations',
 | 
						|
    '//gerrit-extension-api:api',
 | 
						|
    '//gerrit-patch-jgit:server',
 | 
						|
    '//gerrit-prettify:server',
 | 
						|
    '//gerrit-reviewdb:server',
 | 
						|
    '//lib:guava',
 | 
						|
    '//lib:gwtjsonrpc',
 | 
						|
    '//lib:gwtorm',
 | 
						|
    '//lib/jgit/org.eclipse.jgit:jgit',
 | 
						|
    '//lib/joda:joda-time',
 | 
						|
    '//lib/log:api',
 | 
						|
  ],
 | 
						|
  provided_deps = ['//lib:servlet-api-3_1'],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
TEST = 'src/test/java/com/google/gerrit/common/'
 | 
						|
AUTO_VALUE_TEST_SRCS = [TEST + 'AutoValueTest.java']
 | 
						|
 | 
						|
java_test(
 | 
						|
  name = 'client_tests',
 | 
						|
  srcs = glob(['src/test/java/**/*.java'], excludes = AUTO_VALUE_TEST_SRCS),
 | 
						|
  deps = [
 | 
						|
    ':client',
 | 
						|
    '//lib:guava',
 | 
						|
    '//lib:junit',
 | 
						|
  ],
 | 
						|
  source_under_test = [':client'],
 | 
						|
)
 | 
						|
 | 
						|
java_test(
 | 
						|
  name = 'auto_value_tests',
 | 
						|
  srcs = AUTO_VALUE_TEST_SRCS,
 | 
						|
  deps = [
 | 
						|
    '//lib:truth',
 | 
						|
    '//lib/auto:auto-value',
 | 
						|
  ],
 | 
						|
)
 |