mirror of
https://github.com/google/nomulus.git
synced 2025-05-28 08:30:11 +02:00
34 lines
916 B
Text
34 lines
916 B
Text
package(
|
|
default_testonly = 1,
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
|
|
|
|
java_library(
|
|
name = "clouddns",
|
|
srcs = glob(["*Test.java"]),
|
|
deps = [
|
|
"//java/google/registry/dns/writer/clouddns",
|
|
"//java/google/registry/model",
|
|
"//java/google/registry/util",
|
|
"//javatests/google/registry/testing",
|
|
"//third_party/java/objectify:objectify-v4_1",
|
|
"@com_google_apis_google_api_services_dns",
|
|
"@com_google_code_findbugs_jsr305",
|
|
"@com_google_guava",
|
|
"@com_google_truth",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
"@junit",
|
|
"@org_mockito_all",
|
|
],
|
|
)
|
|
|
|
GenTestRules(
|
|
name = "GeneratedTestRules",
|
|
test_files = glob(["*Test.java"]),
|
|
deps = [":clouddns"],
|
|
)
|