In new buck version `$SRCDIR` is not necessary any more. Buck now always runs genrule relative to the $SRCDIR link forest. Change-Id: Iee88bb575c7baa62bc087527927be5347a7f8f95
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
SRCS = [
 | 
						|
  'gerrit-server/src/main/java/',
 | 
						|
  'gerrit-httpd/src/main/java/',
 | 
						|
  'gerrit-sshd/src/main/java/',
 | 
						|
]
 | 
						|
 | 
						|
PLUGIN_API = [
 | 
						|
  '//gerrit-httpd:httpd',
 | 
						|
  '//gerrit-pgm:init-api',
 | 
						|
  '//gerrit-server:server',
 | 
						|
  '//gerrit-sshd:sshd',
 | 
						|
]
 | 
						|
 | 
						|
java_binary(
 | 
						|
  name = 'plugin-api',
 | 
						|
  deps = [':lib'],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_library(
 | 
						|
  name = 'lib',
 | 
						|
  exported_deps = PLUGIN_API + [
 | 
						|
    '//gerrit-common:annotations',
 | 
						|
    '//gerrit-common:server',
 | 
						|
    '//gerrit-extension-api:api',
 | 
						|
    '//gerrit-reviewdb:server',
 | 
						|
    '//lib:args4j',
 | 
						|
    '//lib:guava',
 | 
						|
    '//lib:gwtorm',
 | 
						|
    '//lib:jsch',
 | 
						|
    '//lib:servlet-api-3_1',
 | 
						|
    '//lib/guice:guice',
 | 
						|
    '//lib/guice:guice-assistedinject',
 | 
						|
    '//lib/guice:guice-servlet',
 | 
						|
    '//lib/jgit:jgit',
 | 
						|
    '//lib/log:api',
 | 
						|
    '//lib/mina:sshd',
 | 
						|
  ],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_binary(
 | 
						|
  name = 'plugin-api-src',
 | 
						|
  deps = [
 | 
						|
    '//gerrit-extension-api:extension-api-src',
 | 
						|
  ] + [d + '-src' for d in PLUGIN_API],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_doc(
 | 
						|
  name = 'plugin-api-javadoc',
 | 
						|
  title = 'Gerrit Review Plugin API Documentation',
 | 
						|
  pkg = 'com.google.gerrit',
 | 
						|
  paths = [n for n in SRCS],
 | 
						|
  srcs = glob([n + '**/*.java' for n in SRCS]),
 | 
						|
  deps = [
 | 
						|
    ':plugin-api',
 | 
						|
    '//lib/bouncycastle:bcprov',
 | 
						|
    '//lib/bouncycastle:bcpg',
 | 
						|
  ],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
  do_it_wrong = True,
 | 
						|
)
 |