google-nomulus/javatests/google/registry/storage/drive/BUILD
mcilwain 28f6c770c8 Add MOE equivalence for sync on 2016-12-19
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=142449539
2017-01-09 11:59:04 -05:00

29 lines
711 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 = "drive",
srcs = glob(["*Test.java"]),
deps = [
"//java/google/registry/storage/drive",
"//javatests/google/registry/testing",
"@com_google_apis_google_api_services_drive",
"@com_google_guava",
"@com_google_http_client",
"@com_google_truth",
"@junit",
"@org_mockito_all",
],
)
GenTestRules(
name = "GeneratedTestRules",
test_files = glob(["*Test.java"]),
deps = [":drive"],
)