google-nomulus/javatests/com/google/domain/registry/module/frontend/BUILD
2016-03-01 17:59:16 -05:00

29 lines
798 B
Text

package(
default_visibility = ["//java/com/google/domain/registry:registry_project"],
)
java_library(
name = "frontend",
srcs = glob(["*.java"]),
resources = glob(["testdata/*"]),
runtime_deps = [
# TODO(b/19332643): Remove this dependency when Modules is lazy.
"//third_party/java/appengine:appengine-api-testonly",
],
deps = [
"//java/com/google/domain/registry/module/frontend",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
],
)
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
GenTestRules(
name = "GeneratedTestRules",
test_files = glob(["*Test.java"]),
deps = [":frontend"],
)