mirror of
https://github.com/google/nomulus.git
synced 2025-05-04 22:17:51 +02:00
This removes the following unnecessary imports: //third_party/java_src/gtld/java/google/registry/bigquery //third_party/java_src/gtld/java/google/registry/config //third_party/java_src/gtld/java/google/registry/cron //third_party/java_src/gtld/java/google/registry/dns //third_party/java_src/gtld/java/google/registry/gcs //third_party/java_src/gtld/java/google/registry/mapreduce //third_party/java_src/gtld/java/google/registry/model //third_party/java_src/gtld/java/google/registry/module/backend //third_party/java_src/gtld/java/google/registry/module/frontend //third_party/java_src/gtld/java/google/registry/module/pubapi //third_party/java_src/gtld/java/google/registry/module/tools //third_party/java_src/gtld/java/google/registry/request //third_party/java_src/gtld/java/google/registry/security //third_party/java_src/gtld/java/google/registry/ui/soy/registrar:soy_java_wrappers //third_party/java_src/gtld/java/google/registry/util //third_party/java_src/gtld/java/google/registry/xjc //third_party/java_src/gtld/javatests/google/registry/model //third_party/java_src/gtld/javatests/google/registry/testing //third_party/java_src/gtld/javatests/google/registry/testing/mapreduce The exact command run to generate this CL was: build_cleaner '//third_party/java_src/gtld/...' -c '' --dep_restrictions='//third_party/java_src/gtld/java/google/registry/bigquery,//third_party/java_src/gtld/java/google/registry/config,//third_party/java_src/gtld/java/google/registry/cron,//third_party/java_src/gtld/java/google/registry/dns,//third_party/java_src/gtld/java/google/registry/gcs,//third_party/java_src/gtld/java/google/registry/mapreduce,//third_party/java_src/gtld/java/google/registry/model,//third_party/java_src/gtld/java/google/registry/module/backend,//third_party/java_src/gtld/java/google/registry/module/frontend,//third_party/java_src/gtld/java/google/registry/module/pubapi,//third_party/java_src/gtld/java/google/registry/module/tools,//third_party/java_src/gtld/java/google/registry/request,//third_party/java_src/gtld/java/google/registry/security,//third_party/java_src/gtld/java/google/registry/ui/soy/registrar:soy_java_wrappers,//third_party/java_src/gtld/java/google/registry/util,//third_party/java_src/gtld/java/google/registry/xjc,//third_party/java_src/gtld/javatests/google/registry/model,//third_party/java_src/gtld/javatests/google/registry/testing,//third_party/java_src/gtld/javatests/google/registry/testing/mapreduce' ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=202652421
31 lines
790 B
Text
31 lines
790 B
Text
package(
|
|
default_testonly = 1,
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "backend",
|
|
srcs = glob(["*.java"]),
|
|
resources = glob(["testdata/*"]),
|
|
runtime_deps = [
|
|
# TODO(b/19332643): Remove this dependency when Modules is lazy.
|
|
"@com_google_appengine_api_1_0_sdk//:testonly",
|
|
],
|
|
deps = [
|
|
"//java/google/registry/module/backend",
|
|
"//javatests/google/registry/testing",
|
|
"@javax_servlet_api",
|
|
"@junit",
|
|
"@org_mockito_all",
|
|
],
|
|
)
|
|
|
|
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
|
|
|
|
GenTestRules(
|
|
name = "GeneratedTestRules",
|
|
test_files = glob(["*Test.java"]),
|
|
deps = [":backend"],
|
|
)
|