Cross cell support in Buck is considered as experimental feature, with number of open issues: [1], [2], [3]. Moreover, to make Maven Central machinery work, it was needed to create symbolic links in source tree. That broke `buck targets` feature. Remove it for now, and re-consider to add it later. [1] https://github.com/facebook/buck/issues/656 [2] https://github.com/facebook/buck/issues/658 [3] https://github.com/facebook/buck/issues/717 Bug: Issue 3954 Change-Id: Ic621a07771f926001df181b46b2169e214ce208a
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
java_library(
 | 
						|
  name = 'lib',
 | 
						|
  srcs = glob(['src/test/java/com/google/gerrit/acceptance/*.java']),
 | 
						|
  exported_deps = [
 | 
						|
    '//gerrit-acceptance-framework:lib',
 | 
						|
    '//gerrit-common:annotations',
 | 
						|
    '//gerrit-common:server',
 | 
						|
    '//gerrit-extension-api:api',
 | 
						|
    '//gerrit-gpg:testutil',
 | 
						|
    '//gerrit-launcher:launcher',
 | 
						|
    '//gerrit-lucene:lucene',
 | 
						|
    '//gerrit-httpd:httpd',
 | 
						|
    '//gerrit-pgm:init',
 | 
						|
    '//gerrit-pgm:pgm',
 | 
						|
    '//gerrit-pgm:util',
 | 
						|
    '//gerrit-reviewdb:server',
 | 
						|
    '//gerrit-server:server',
 | 
						|
    '//gerrit-server:testutil',
 | 
						|
    '//gerrit-server/src/main/prolog:common',
 | 
						|
    '//gerrit-sshd:sshd',
 | 
						|
 | 
						|
    '//lib:args4j',
 | 
						|
    '//lib:gson',
 | 
						|
    '//lib:gwtjsonrpc',
 | 
						|
    '//lib:gwtorm',
 | 
						|
    '//lib:h2',
 | 
						|
    '//lib:jsch',
 | 
						|
    '//lib:servlet-api-3_1',
 | 
						|
 | 
						|
    '//lib/bouncycastle:bcpg',
 | 
						|
    '//lib/bouncycastle:bcprov',
 | 
						|
    '//lib/guice:guice',
 | 
						|
    '//lib/guice:guice-assistedinject',
 | 
						|
    '//lib/guice:guice-servlet',
 | 
						|
    '//lib/log:api',
 | 
						|
    '//lib/jgit/org.eclipse.jgit:jgit',
 | 
						|
    '//lib/mina:sshd',
 | 
						|
  ],
 | 
						|
  visibility = [
 | 
						|
    '//gerrit-plugin-api/...',
 | 
						|
    '//tools/eclipse:classpath',
 | 
						|
    '//gerrit-acceptance-tests/...',
 | 
						|
  ],
 | 
						|
)
 |