08ea694499
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
58 lines
1.2 KiB
Python
58 lines
1.2 KiB
Python
DEPS = [
|
|
'//gerrit-common:server',
|
|
'//gerrit-extension-api:api',
|
|
'//gerrit-reviewdb:server',
|
|
'//gerrit-server:server',
|
|
'//lib:guava',
|
|
'//lib:gwtorm',
|
|
'//lib/guice:guice',
|
|
'//lib/guice:guice-assistedinject',
|
|
'//lib/guice:guice-servlet',
|
|
'//lib/jgit/org.eclipse.jgit:jgit',
|
|
'//lib/log:api',
|
|
]
|
|
|
|
java_library(
|
|
name = 'gpg',
|
|
srcs = glob(['src/main/java/**/*.java']),
|
|
provided_deps = DEPS + [
|
|
'//lib/bouncycastle:bcpg',
|
|
'//lib/bouncycastle:bcprov',
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
TESTUTIL_SRCS = glob(['src/test/**/testutil/**/*.java'])
|
|
|
|
java_library(
|
|
name = 'testutil',
|
|
srcs = TESTUTIL_SRCS,
|
|
deps = DEPS + [
|
|
':gpg',
|
|
'//lib/bouncycastle:bcpg',
|
|
'//lib/bouncycastle:bcprov',
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
java_test(
|
|
name = 'gpg_tests',
|
|
srcs = glob(
|
|
['src/test/java/**/*.java'],
|
|
excludes = TESTUTIL_SRCS,
|
|
),
|
|
deps = DEPS + [
|
|
':gpg',
|
|
':testutil',
|
|
'//gerrit-cache-h2:cache-h2',
|
|
'//gerrit-lucene:lucene',
|
|
'//gerrit-server:testutil',
|
|
'//lib:truth',
|
|
'//lib/bouncycastle:bcpg',
|
|
'//lib/bouncycastle:bcprov',
|
|
'//lib/jgit/org.eclipse.jgit.junit:junit',
|
|
],
|
|
source_under_test = [':gpg'],
|
|
visibility = ['//tools/eclipse:classpath'],
|
|
)
|