mirror of
https://github.com/google/nomulus.git
synced 2025-07-23 19:20:44 +02:00
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
29 lines
795 B
Text
29 lines
795 B
Text
package(
|
|
default_visibility = ["//java/com/google/domain/registry:registry_project"],
|
|
)
|
|
|
|
|
|
java_library(
|
|
name = "backend",
|
|
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/backend",
|
|
"//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 = [":backend"],
|
|
)
|