mirror of
https://github.com/google/nomulus
synced 2026-01-08 15:21:46 +00:00
This is so Donuts can create entirely separate Bazel repositories that link against the Domain Registry codebase. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=116182448
28 lines
964 B
Python
28 lines
964 B
Python
package(
|
|
default_visibility = ["//java/com/google/domain/registry:registry_project"],
|
|
)
|
|
|
|
|
|
java_library(
|
|
name = "mapreduce",
|
|
srcs = glob(["*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/com/google/common/annotations",
|
|
"//java/com/google/common/base",
|
|
"//java/com/google/common/collect",
|
|
"//java/com/google/domain/registry/config",
|
|
"//java/com/google/domain/registry/model",
|
|
"//java/com/google/domain/registry/request",
|
|
"//java/com/google/domain/registry/util",
|
|
"//third_party/java/appengine:appengine-api",
|
|
"//third_party/java/appengine_mapreduce2:appengine_mapreduce",
|
|
"//third_party/java/appengine_pipeline",
|
|
"//third_party/java/dagger",
|
|
"//third_party/java/joda_time",
|
|
"//third_party/java/jsr330_inject",
|
|
"//third_party/java/objectify:objectify-v4_1",
|
|
"//third_party/java/servlet/servlet_api",
|
|
],
|
|
)
|