mirror of
https://github.com/google/nomulus.git
synced 2025-05-05 14:37:52 +02:00
This affects JSR305, JSR330, and Guava annotations. The exact command run to generate this CL was: build_cleaner '//third_party/java_src/gtld/...' -c '' --dep_restrictions='//third_party/java/jsr330_inject,//third_party/java/jsr305_annotations,[]' ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=202322747
33 lines
872 B
Text
33 lines
872 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 = "bigquery",
|
|
srcs = glob(["*.java"]),
|
|
resources = glob(["testdata/*"]),
|
|
deps = [
|
|
"//java/google/registry/bigquery",
|
|
"//java/google/registry/util",
|
|
"//javatests/google/registry/testing",
|
|
"@com_google_apis_google_api_services_bigquery",
|
|
"@com_google_guava",
|
|
"@com_google_http_client",
|
|
"@com_google_truth",
|
|
"@com_google_truth_extensions_truth_java8_extension",
|
|
"@joda_time",
|
|
"@junit",
|
|
"@org_mockito_all",
|
|
],
|
|
)
|
|
|
|
GenTestRules(
|
|
name = "GeneratedTestRules",
|
|
test_files = glob(["*Test.java"]),
|
|
deps = [":bigquery"],
|
|
)
|