063e0fd4fd
This is a simpler approach as it doesn't require generating extra test targets for Buck, nor rebuilding test jars to get everything working in Eclipse. There are enough tests running at any given time with Buck that having each acceptance test take twice as long should maintain adequate parallelism. Change-Id: I109acaf6b957e8f9dd621e98abe46a75f78cdc32
43 lines
1017 B
Python
43 lines
1017 B
Python
java_library(
|
|
name = 'lib',
|
|
srcs = glob(['src/test/java/com/google/gerrit/acceptance/*.java']),
|
|
exported_deps = [
|
|
'//gerrit-common:annotations',
|
|
'//gerrit-common:server',
|
|
'//gerrit-extension-api:api',
|
|
'//gerrit-launcher:launcher',
|
|
'//gerrit-lucene:lucene',
|
|
'//gerrit-httpd:httpd',
|
|
'//gerrit-pgm:init-base',
|
|
'//gerrit-pgm:pgm',
|
|
'//gerrit-reviewdb:server',
|
|
'//gerrit-server:server',
|
|
'//gerrit-server:testutil',
|
|
'//gerrit-sshd:sshd',
|
|
|
|
'//lib:args4j',
|
|
'//lib:gson',
|
|
'//lib:guava',
|
|
'//lib:gwtjsonrpc',
|
|
'//lib:gwtorm',
|
|
'//lib:h2',
|
|
'//lib:jsch',
|
|
'//lib:junit',
|
|
'//lib:servlet-api-3_1',
|
|
|
|
'//lib/commons:httpclient',
|
|
'//lib/commons:httpcore',
|
|
'//lib/log:impl_log4j',
|
|
'//lib/log:log4j',
|
|
'//lib/guice:guice',
|
|
'//lib/guice:guice-assistedinject',
|
|
'//lib/jgit:jgit',
|
|
'//lib/jgit:junit',
|
|
'//lib/mina:sshd',
|
|
],
|
|
visibility = [
|
|
'//tools/eclipse:classpath',
|
|
'//gerrit-acceptance-tests/...',
|
|
],
|
|
)
|