9561f38f14
Formatted with buildifier version 0.4.3 installed via homebrew on OSX. Change-Id: Iab54e118a5d119b5c031838c267b848b8ead30f2
77 lines
2.0 KiB
Python
77 lines
2.0 KiB
Python
load("//tools/bzl:java.bzl", "java_library2")
|
|
|
|
SRCS = glob(["src/test/java/com/google/gerrit/acceptance/*.java"])
|
|
|
|
PROVIDED = [
|
|
"//gerrit-common:annotations",
|
|
"//gerrit-common:server",
|
|
"//gerrit-extension-api:api",
|
|
"//gerrit-httpd:httpd",
|
|
"//gerrit-lucene:lucene",
|
|
"//gerrit-pgm:init",
|
|
"//gerrit-reviewdb:server",
|
|
"//gerrit-server:server",
|
|
"//lib:gson",
|
|
"//lib:jsch",
|
|
"//lib/jgit/org.eclipse.jgit:jgit",
|
|
"//lib/mina:sshd",
|
|
"//lib:servlet-api-3_1",
|
|
]
|
|
|
|
java_binary(
|
|
name = "acceptance-framework",
|
|
testonly = 1,
|
|
main_class = "Dummy",
|
|
visibility = ["//visibility:public"],
|
|
runtime_deps = [":lib"],
|
|
)
|
|
|
|
java_library2(
|
|
name = "lib",
|
|
testonly = 1,
|
|
srcs = SRCS,
|
|
exported_deps = [
|
|
"//gerrit-antlr:query_exception",
|
|
"//gerrit-gpg:gpg",
|
|
"//gerrit-launcher:launcher",
|
|
"//gerrit-openid:openid",
|
|
"//gerrit-pgm:daemon",
|
|
"//gerrit-pgm:http-jetty",
|
|
"//gerrit-pgm:util-nodep",
|
|
"//gerrit-server:testutil",
|
|
"//gerrit-server/src/main/prolog:common",
|
|
"//lib:jimfs",
|
|
"//lib:truth",
|
|
"//lib:truth-java8-extension",
|
|
"//lib/auto:auto-value",
|
|
"//lib/httpcomponents:fluent-hc",
|
|
"//lib/httpcomponents:httpclient",
|
|
"//lib/httpcomponents:httpcore",
|
|
"//lib/jetty:servlet",
|
|
"//lib/jgit/org.eclipse.jgit.junit:junit",
|
|
"//lib/log:impl_log4j",
|
|
"//lib/log:log4j",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = PROVIDED + [
|
|
# We want these deps to be exported_deps
|
|
"//lib/greenmail:greenmail",
|
|
"//lib:gwtorm",
|
|
"//lib/guice:guice",
|
|
"//lib/guice:guice-assistedinject",
|
|
"//lib/guice:guice-servlet",
|
|
"//lib/mail:mail",
|
|
],
|
|
)
|
|
|
|
load("//tools/bzl:javadoc.bzl", "java_doc")
|
|
|
|
java_doc(
|
|
name = "acceptance-framework-javadoc",
|
|
testonly = 1,
|
|
libs = [":lib"],
|
|
pkgs = ["com.google.gerrit.acceptance"],
|
|
title = "Gerrit Acceptance Test Framework Documentation",
|
|
visibility = ["//visibility:public"],
|
|
)
|