mirror of
https://github.com/google/nomulus.git
synced 2025-08-03 16:32:11 +02:00
28 lines
794 B
Text
28 lines
794 B
Text
package(
|
|
default_visibility = ["//java/com/google/domain/registry:registry_project"],
|
|
)
|
|
|
|
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
|
|
|
|
|
|
java_library(
|
|
name = "bigquery",
|
|
srcs = glob(["*.java"]),
|
|
resources = glob(["testdata/*"]),
|
|
deps = [
|
|
"//apiserving/discoverydata/bigquery:bigqueryv2",
|
|
"//java/com/google/domain/registry/bigquery",
|
|
"//java/com/google/domain/registry/util",
|
|
"//javatests/com/google/domain/registry/testing",
|
|
"//third_party/java/joda_time",
|
|
"//third_party/java/jsr305_annotations",
|
|
"//third_party/java/junit",
|
|
"//third_party/java/truth",
|
|
],
|
|
)
|
|
|
|
GenTestRules(
|
|
name = "GeneratedTestRules",
|
|
test_files = glob(["*Test.java"]),
|
|
deps = [":bigquery"],
|
|
)
|