Run buildifier on codebase to format BUILD files

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=140362453
This commit is contained in:
mcilwain 2016-11-28 08:49:22 -08:00 committed by Ben McIlwain
parent 9129c74201
commit 2b7d580bb3
109 changed files with 404 additions and 519 deletions

View file

@ -16,9 +16,6 @@ package_group(
], ],
) )
zip_file( zip_file(
name = "common_war", name = "common_war",
srcs = [ srcs = [
@ -112,7 +109,6 @@ zip_file(
], ],
) )
################################################################################ ################################################################################
# DOMAIN REGISTRY :: SANDBOX ENVIRONMENT # DOMAIN REGISTRY :: SANDBOX ENVIRONMENT
# #
@ -294,4 +290,3 @@ zip_file(
mappings = {"java/google/registry/env/local/tools": ""}, mappings = {"java/google/registry/env/local/tools": ""},
deps = [":registry_tools_war"], deps = [":registry_tools_war"],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "backup", name = "backup",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,6 +14,11 @@ java_library(
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/config",
"//java/google/registry/cron",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
"//third_party/java/dagger", "//third_party/java/dagger",
@ -24,10 +28,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/cron",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "batch", name = "batch",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,6 +14,13 @@ java_library(
"//java/com/google/common/html", "//java/com/google/common/html",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/config",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/pricing",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
@ -26,12 +32,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/pricing",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "bigquery", name = "bigquery",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -22,12 +21,12 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/config",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//java/google/registry/config",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -4,18 +4,17 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "braintree", name = "braintree",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/google/registry/config",
"//java/google/registry/keyring/api",
"//java/google/registry/model",
"//third_party/java/braintree", "//third_party/java/braintree",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//java/google/registry/config",
"//java/google/registry/keyring/api",
"//java/google/registry/model",
], ],
) )

View file

@ -3,4 +3,3 @@ package(
) )
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "config", name = "config",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "cron", name = "cron",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -13,6 +12,9 @@ java_library(
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -20,8 +22,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -7,7 +7,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "constants", name = "constants",
srcs = ["DnsConstants.java"], srcs = ["DnsConstants.java"],
@ -27,6 +26,12 @@ java_library(
"//java/com/google/common/html", "//java/com/google/common/html",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/config",
"//java/google/registry/dns/writer",
"//java/google/registry/model",
"//java/google/registry/monitoring/metrics",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/auto:auto_value", "//third_party/java/auto:auto_value",
"//third_party/java/dagger", "//third_party/java/dagger",
@ -35,11 +40,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/dns/writer",
"//java/google/registry/model",
"//java/google/registry/monitoring/metrics",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "writer", name = "writer",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "clouddns", name = "clouddns",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -18,11 +17,11 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/dns/writer", "//java/google/registry/dns/writer",
"//java/google/registry/model", "//java/google/registry/model",
"//java/google/registry/util", "//java/google/registry/util",
"//third_party/java/dagger",
"//third_party/java/joda_time",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "dnsupdate", name = "dnsupdate",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,14 +14,14 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/google/registry/config",
"//java/google/registry/dns/writer",
"//java/google/registry/model",
"//java/google/registry/util",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/dnsjava", "//third_party/java/dnsjava",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//java/google/registry/config",
"//java/google/registry/dns/writer",
"//java/google/registry/model",
"//java/google/registry/util",
], ],
) )

View file

@ -8,11 +8,11 @@ java_binary(
name = "annotation_processors_ide", name = "annotation_processors_ide",
create_executable = False, create_executable = False,
runtime_deps = [ runtime_deps = [
"//third_party/java/dagger:dagger-compiler",
"@auto_factory//jar", "@auto_factory//jar",
"@auto_service//jar", "@auto_service//jar",
"@auto_value//jar", "@auto_value//jar",
"@javawriter//jar", "@javawriter//jar",
"//third_party/java/dagger:dagger-compiler",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "export", name = "export",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -23,16 +22,6 @@ java_library(
"//java/com/google/common/html", "//java/com/google/common/html",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_gcs_client",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
"//java/google/registry/bigquery", "//java/google/registry/bigquery",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/gcs", "//java/google/registry/gcs",
@ -43,5 +32,15 @@ java_library(
"//java/google/registry/request", "//java/google/registry/request",
"//java/google/registry/storage/drive", "//java/google/registry/storage/drive",
"//java/google/registry/util", "//java/google/registry/util",
"//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_gcs_client",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "sheet", name = "sheet",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -16,6 +15,10 @@ java_library(
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/gdata", "//java/com/google/gdata",
"//java/com/google/gdata:spreadsheet", "//java/com/google/gdata:spreadsheet",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -23,9 +26,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -6,7 +6,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_java_template_library") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_java_template_library")
filegroup( filegroup(
name = "flows_files", name = "flows_files",
srcs = glob([ srcs = glob([
@ -30,17 +29,6 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/math", "//java/com/google/common/math",
"//java/com/google/common/net", "//java/com/google/common/net",
"//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce",
"//third_party/java/auto:auto_value",
"//third_party/java/dagger",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/dns", "//java/google/registry/dns",
"//java/google/registry/mapreduce", "//java/google/registry/mapreduce",
@ -54,7 +42,17 @@ java_library(
"//java/google/registry/tmch", "//java/google/registry/tmch",
"//java/google/registry/util", "//java/google/registry/util",
"//java/google/registry/xml", "//java/google/registry/xml",
"//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce",
"//third_party/java/auto:auto_value",
"//third_party/java/dagger",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
"@io_bazel_rules_closure//closure/templates", "@io_bazel_rules_closure//closure/templates",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "gcs", name = "gcs",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -12,11 +11,11 @@ java_library(
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/config",
"//java/google/registry/util",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//java/google/registry/config",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "groups", name = "groups",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -16,12 +15,12 @@ java_library(
"//java/com/google/common/annotations", "//java/com/google/common/annotations",
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/config",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -3,4 +3,3 @@ package(
) )
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "api", name = "api",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "loadtest", name = "loadtest",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -13,15 +12,15 @@ java_library(
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/config",
"//java/google/registry/request",
"//java/google/registry/security",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/request",
"//java/google/registry/security",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "mapreduce", name = "mapreduce",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -12,6 +11,10 @@ java_library(
"//java/com/google/common/annotations", "//java/com/google/common/annotations",
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
"//third_party/java/appengine_pipeline", "//third_party/java/appengine_pipeline",
@ -20,9 +23,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "inputs", name = "inputs",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -12,6 +11,8 @@ java_library(
"//java/com/google/common/annotations", "//java/com/google/common/annotations",
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/model",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
"//third_party/java/appengine_pipeline", "//third_party/java/appengine_pipeline",
@ -20,7 +21,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/model",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "model", name = "model",
srcs = glob([ srcs = glob([
@ -25,6 +24,9 @@ java_library(
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/com/google/common/reflect", "//java/com/google/common/reflect",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/config",
"//java/google/registry/util",
"//java/google/registry/xml",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_money", "//third_party/java/joda_money",
@ -34,8 +36,5 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/util",
"//java/google/registry/xml",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "backend", name = "backend",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -13,13 +12,6 @@ java_library(
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//third_party/java/appengine:appengine-api",
"//third_party/java/bouncycastle",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/servlet/servlet_api",
"//java/google/registry/backup", "//java/google/registry/backup",
"//java/google/registry/batch", "//java/google/registry/batch",
"//java/google/registry/bigquery", "//java/google/registry/bigquery",
@ -44,6 +36,13 @@ java_library(
"//java/google/registry/request:modules", "//java/google/registry/request:modules",
"//java/google/registry/tmch", "//java/google/registry/tmch",
"//java/google/registry/util", "//java/google/registry/util",
"//third_party/java/appengine:appengine-api",
"//third_party/java/bouncycastle",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/servlet/servlet_api",
], ],
) )

View file

@ -4,19 +4,12 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "frontend", name = "frontend",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//third_party/java/appengine:appengine-api",
"//third_party/java/bouncycastle",
"//third_party/java/dagger",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/servlet/servlet_api",
"//java/google/registry/braintree", "//java/google/registry/braintree",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/dns", "//java/google/registry/dns",
@ -31,6 +24,12 @@ java_library(
"//java/google/registry/ui/server/registrar", "//java/google/registry/ui/server/registrar",
"//java/google/registry/util", "//java/google/registry/util",
"//java/google/registry/whois", "//java/google/registry/whois",
"//third_party/java/appengine:appengine-api",
"//third_party/java/bouncycastle",
"//third_party/java/dagger",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/servlet/servlet_api",
], ],
) )

View file

@ -4,19 +4,12 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "tools", name = "tools",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//third_party/java/appengine:appengine-api",
"//third_party/java/bouncycastle",
"//third_party/java/dagger",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/servlet/servlet_api",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/dns", "//java/google/registry/dns",
"//java/google/registry/export", "//java/google/registry/export",
@ -32,6 +25,12 @@ java_library(
"//java/google/registry/tools/server", "//java/google/registry/tools/server",
"//java/google/registry/tools/server/javascrap", "//java/google/registry/tools/server/javascrap",
"//java/google/registry/util", "//java/google/registry/util",
"//third_party/java/appengine:appengine-api",
"//third_party/java/bouncycastle",
"//third_party/java/dagger",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/servlet/servlet_api",
], ],
) )

View file

@ -4,14 +4,13 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "metrics", name = "metrics",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//google/monitoring:monitoring_java_lib", "//google/monitoring:monitoring_java_lib",
"//java/com/google/api/client/http",
"//java/com/google/api/client/googleapis/json", "//java/com/google/api/client/googleapis/json",
"//java/com/google/api/client/http",
"//java/com/google/api/client/json", "//java/com/google/api/client/json",
"//java/com/google/common/annotations", "//java/com/google/common/annotations",
"//java/com/google/common/base", "//java/com/google/common/base",

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "whitebox", name = "whitebox",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -19,6 +18,15 @@ java_library(
"//java/com/google/common/cache", "//java/com/google/common/cache",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/bigquery",
"//java/google/registry/config",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/monitoring/metrics",
"//java/google/registry/request",
"//java/google/registry/request:modules",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
"//third_party/java/auto:auto_factory", "//third_party/java/auto:auto_factory",
@ -29,14 +37,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/bigquery",
"//java/google/registry/config",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/monitoring/metrics",
"//java/google/registry/request",
"//java/google/registry/request:modules",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "pricing", name = "pricing",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,6 +14,8 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/model",
"//java/google/registry/util",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_money", "//third_party/java/joda_money",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -22,7 +23,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/model",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "rdap", name = "rdap",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -16,6 +15,10 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/auto:auto_value", "//third_party/java/auto:auto_value",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -25,9 +28,5 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "rde", name = "rde",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -16,6 +15,17 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/math", "//java/com/google/common/math",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/config",
"//java/google/registry/gcs",
"//java/google/registry/keyring/api",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/tldconfig/idn",
"//java/google/registry/util",
"//java/google/registry/xjc",
"//java/google/registry/xml",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
@ -31,16 +41,5 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/gcs",
"//java/google/registry/keyring/api",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/tldconfig/idn",
"//java/google/registry/util",
"//java/google/registry/xjc",
"//java/google/registry/xml",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "request", name = "request",
srcs = glob( srcs = glob(
@ -18,6 +17,8 @@ java_library(
"//java/com/google/common/html", "//java/com/google/common/html",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/security",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/auto:auto_value", "//third_party/java/auto:auto_value",
"//third_party/java/dagger", "//third_party/java/dagger",
@ -26,8 +27,6 @@ java_library(
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/security",
"//java/google/registry/util",
], ],
) )
@ -43,9 +42,9 @@ java_library(
"//java/com/google/api/client/json/jackson2", "//java/com/google/api/client/json/jackson2",
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//third_party/java/appengine:appengine-api",
"//third_party/java/dagger",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/keyring/api", "//java/google/registry/keyring/api",
"//third_party/java/appengine:appengine-api",
"//third_party/java/dagger",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "security", name = "security",
srcs = glob( srcs = glob(
@ -18,13 +17,13 @@ java_library(
"//java/com/google/common/html", "//java/com/google/common/html",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/model",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/json_simple", "//third_party/java/json_simple",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/model",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "drive", name = "drive",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "idn", name = "idn",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -14,11 +13,11 @@ java_library(
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/google/registry/util",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "tmch", name = "tmch",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -20,6 +19,12 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/config",
"//java/google/registry/keyring/api",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//java/google/registry/xml",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/bouncycastle", "//third_party/java/bouncycastle",
"//third_party/java/bouncycastle_bcpg", "//third_party/java/bouncycastle_bcpg",
@ -30,11 +35,5 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/keyring/api",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//java/google/registry/xml",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
# Restrict visibility to :tools because :remoteapi-internal (and transitively # Restrict visibility to :tools because :remoteapi-internal (and transitively
# :appengine-api-link) should never be linked into an App Engine deploy jar, # :appengine-api-link) should never be linked into an App Engine deploy jar,
# since the App Engine API is provided by the runtime environment. # since the App Engine API is provided by the runtime environment.
@ -55,8 +54,8 @@ java_library(
"//java/google/registry/model", "//java/google/registry/model",
"//java/google/registry/pricing", "//java/google/registry/pricing",
"//java/google/registry/rde", "//java/google/registry/rde",
"//java/google/registry/security",
"//java/google/registry/request:modules", "//java/google/registry/request:modules",
"//java/google/registry/security",
"//java/google/registry/tldconfig/idn", "//java/google/registry/tldconfig/idn",
"//java/google/registry/tmch", "//java/google/registry/tmch",
"//java/google/registry/tools/params", "//java/google/registry/tools/params",
@ -67,6 +66,7 @@ java_library(
"//java/google/registry/xjc", "//java/google/registry/xjc",
"//java/google/registry/xml", "//java/google/registry/xml",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine:appengine-remote-api",
"//third_party/java/appengine:appengine-remote-api-link", "//third_party/java/appengine:appengine-remote-api-link",
"//third_party/java/bouncycastle", "//third_party/java/bouncycastle",
"//third_party/java/bouncycastle_bcpg", "//third_party/java/bouncycastle_bcpg",
@ -80,9 +80,6 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/appengine:appengine-remote-api",
"@io_bazel_rules_closure//closure/templates", "@io_bazel_rules_closure//closure/templates",
], ],
) )
@ -97,4 +94,3 @@ java_binary(
"//third_party/java/appengine:appengine-remote-api-link", "//third_party/java/appengine:appengine-remote-api-link",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "params", name = "params",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,12 +14,12 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/google/registry/model",
"//java/google/registry/util",
"//third_party/java/jcommander", "//third_party/java/jcommander",
"//third_party/java/joda_money", "//third_party/java/joda_money",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/re2j", "//third_party/java/re2j",
"//java/google/registry/model",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "server", name = "server",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -16,6 +15,16 @@ java_library(
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/config",
"//java/google/registry/export",
"//java/google/registry/flows",
"//java/google/registry/gcs",
"//java/google/registry/groups",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
@ -27,15 +36,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/export",
"//java/google/registry/flows",
"//java/google/registry/gcs",
"//java/google/registry/groups",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "javascrap", name = "javascrap",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -12,6 +11,12 @@ java_library(
"//java/com/google/common/annotations", "//java/com/google/common/annotations",
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/dns",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
"//third_party/java/dagger", "//third_party/java/dagger",
@ -19,11 +24,5 @@ java_library(
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//java/google/registry/dns",
"//java/google/registry/mapreduce",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
], ],
) )

View file

@ -6,7 +6,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_java_template_library") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_java_template_library")
closure_java_template_library( closure_java_template_library(
name = "soy_java_wrappers", name = "soy_java_wrappers",
srcs = glob(["*.soy"]), srcs = glob(["*.soy"]),

View file

@ -7,7 +7,6 @@ load("//java/google/registry/builddefs:zip_file.bzl", "zip_file")
exports_files(["globals.txt"]) exports_files(["globals.txt"])
filegroup( filegroup(
name = "runfiles", name = "runfiles",
srcs = glob(["assets/**"]) + [ srcs = glob(["assets/**"]) + [
@ -23,19 +22,19 @@ filegroup(
filegroup( filegroup(
name = "runfiles_debug", name = "runfiles_debug",
srcs = [ srcs = [
"@closure_library//:js_files",
"brain_bin.js.map", "brain_bin.js.map",
"deps.js", "deps.js",
"registrar_bin.js.map", "registrar_bin.js.map",
"registrar_dbg.js", "registrar_dbg.js",
"//javascript/closure:js_files_recursive",
"//javascript/template/soy:soy_usegoog_js_files",
"//java/google/registry/ui/css:css_files", "//java/google/registry/ui/css:css_files",
"//java/google/registry/ui/css:registrar_dbg.css", "//java/google/registry/ui/css:registrar_dbg.css",
"//java/google/registry/ui/js:js_files", "//java/google/registry/ui/js:js_files",
"//java/google/registry/ui/js/registrar:js_files", "//java/google/registry/ui/js/registrar:js_files",
"//java/google/registry/ui/soy:js_files", "//java/google/registry/ui/soy:js_files",
"//java/google/registry/ui/soy/registrar:js_files", "//java/google/registry/ui/soy/registrar:js_files",
"//javascript/closure:js_files_recursive",
"//javascript/template/soy:soy_usegoog_js_files",
"@closure_library//:js_files",
], ],
) )
@ -72,14 +71,13 @@ java_library(
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/google/registry/config",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//java/google/registry/config",
], ],
) )
closure_js_deps( closure_js_deps(
name = "deps", name = "deps",
deps = [ deps = [

View file

@ -6,7 +6,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_css_library", "closure_css_binary") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_css_library", "closure_css_binary")
filegroup( filegroup(
name = "css_files", name = "css_files",
srcs = glob(["*.css"]), srcs = glob(["*.css"]),
@ -17,7 +16,6 @@ closure_css_library(
srcs = ["kd_components.css"], srcs = ["kd_components.css"],
) )
closure_css_library( closure_css_library(
name = "registry_lib", name = "registry_lib",
srcs = [ srcs = [

View file

@ -6,7 +6,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library")
closure_js_library( closure_js_library(
name = "externs", name = "externs",
externs = glob(["*.js"]), externs = glob(["*.js"]),

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "forms", name = "forms",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
filegroup( filegroup(
name = "html_files", name = "html_files",
srcs = glob(["*.html"]), srcs = glob(["*.html"]),

View file

@ -6,7 +6,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library")
filegroup( filegroup(
name = "js_files", name = "js_files",
srcs = glob(["*.js"]), srcs = glob(["*.js"]),
@ -16,8 +15,8 @@ closure_js_library(
name = "js", name = "js",
srcs = [":js_files"], srcs = [":js_files"],
deps = [ deps = [
"//javascript/closure",
"//java/google/registry/ui/soy:Console", "//java/google/registry/ui/soy:Console",
"//java/google/registry/ui/soy:Forms", "//java/google/registry/ui/soy:Forms",
"//javascript/closure",
], ],
) )

View file

@ -6,7 +6,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library")
filegroup( filegroup(
name = "js_files", name = "js_files",
srcs = glob(["*.js"]), srcs = glob(["*.js"]),
@ -16,7 +15,6 @@ closure_js_library(
name = "registrar", name = "registrar",
srcs = [":js_files"], srcs = [":js_files"],
deps = [ deps = [
"//javascript/closure",
"//java/google/registry/ui/js", "//java/google/registry/ui/js",
"//java/google/registry/ui/soy:Forms", "//java/google/registry/ui/soy:Forms",
"//java/google/registry/ui/soy/registrar:Console", "//java/google/registry/ui/soy/registrar:Console",
@ -31,5 +29,6 @@ closure_js_library(
"//java/google/registry/ui/soy/registrar:Payment", "//java/google/registry/ui/soy/registrar:Payment",
"//java/google/registry/ui/soy/registrar:SecuritySettings", "//java/google/registry/ui/soy/registrar:SecuritySettings",
"//java/google/registry/ui/soy/registrar:WhoisSettings", "//java/google/registry/ui/soy/registrar:WhoisSettings",
"//javascript/closure",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "server", name = "server",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -28,7 +27,6 @@ java_library(
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"@io_bazel_rules_closure//closure/templates", "@io_bazel_rules_closure//closure/templates",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "registrar", name = "registrar",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -18,7 +17,6 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//third_party/java/re2j",
"//java/google/registry/braintree", "//java/google/registry/braintree",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/export/sheet", "//java/google/registry/export/sheet",
@ -38,8 +36,8 @@ java_library(
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"@io_bazel_rules_closure//closure/templates", "@io_bazel_rules_closure//closure/templates",
], ],
) )

View file

@ -6,7 +6,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_java_template_library", "closure_js_template_library") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_java_template_library", "closure_js_template_library")
filegroup( filegroup(
name = "js_files", name = "js_files",
srcs = [ srcs = [

View file

@ -6,7 +6,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_java_template_library", "closure_js_template_library") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_java_template_library", "closure_js_template_library")
filegroup( filegroup(
name = "js_files", name = "js_files",
srcs = [ srcs = [

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "util", name = "util",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -20,6 +19,7 @@ java_library(
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/com/google/common/reflect", "//java/com/google/common/reflect",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/config",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/icu4j", "//third_party/java/icu4j",
@ -29,6 +29,5 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "whois", name = "whois",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,6 +14,11 @@ java_library(
"//java/com/google/common/html", "//java/com/google/common/html",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//java/google/registry/xml",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -22,10 +26,5 @@ java_library(
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//java/google/registry/xml",
], ],
) )

View file

@ -6,16 +6,15 @@ licenses(["notice"]) # Apache 2.0
load("//java/google/registry/xjc:generated_files.bzl", "pkginfo_generated_files", "xjc_generated_files") load("//java/google/registry/xjc:generated_files.bzl", "pkginfo_generated_files", "xjc_generated_files")
java_library( java_library(
name = "xjc", name = "xjc",
srcs = glob(["*.java"]) + xjc_generated_files + pkginfo_generated_files, srcs = glob(["*.java"]) + xjc_generated_files + pkginfo_generated_files,
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
deps = [ deps = [
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/xml",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//java/google/registry/xml",
], ],
) )
@ -24,8 +23,8 @@ sh_binary(
srcs = ["list_generated_files.sh"], srcs = ["list_generated_files.sh"],
data = [ data = [
"bindings.xjb", "bindings.xjb",
"//third_party/java/jaxb:jaxb-xjc",
"//java/google/registry/xml:xml_schema_files", "//java/google/registry/xml:xml_schema_files",
"//third_party/java/jaxb:jaxb-xjc",
], ],
) )

View file

@ -4,7 +4,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
filegroup( filegroup(
name = "xml_schema_files", name = "xml_schema_files",
srcs = glob(["xsd/*.xsd"]), srcs = glob(["xsd/*.xsd"]),

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "backup", name = "backup",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -18,6 +17,11 @@ java_library(
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/backup",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -27,11 +31,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/backup",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "batch", name = "batch",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -17,6 +16,11 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/batch",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-stubs", "//third_party/java/appengine:appengine-stubs",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
@ -30,11 +34,6 @@ java_library(
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/batch",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "bigquery", name = "bigquery",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -17,14 +16,14 @@ java_library(
"//java/com/google/api/client/http", "//java/com/google/api/client/http",
"//java/com/google/api/client/json", "//java/com/google/api/client/json",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/bigquery",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/bigquery",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -8,7 +8,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/google/registry/builddefs:zip_file.bzl", "zip_file") load("//java/google/registry/builddefs:zip_file.bzl", "zip_file")
load("//javatests/google/registry/builddefs:zip_contents_test.bzl", "zip_contents_test") load("//javatests/google/registry/builddefs:zip_contents_test.bzl", "zip_contents_test")
genrule( genrule(
name = "generated", name = "generated",
outs = ["generated.txt"], outs = ["generated.txt"],

View file

@ -7,15 +7,14 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "config", name = "config",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/annotations", "//java/com/google/common/annotations",
"//java/google/registry/config",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/config",
], ],
) )

View file

@ -7,13 +7,16 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "cron", name = "cron",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/cron",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/junit", "//third_party/java/junit",
@ -21,10 +24,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/cron",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "dns", name = "dns",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -18,16 +17,6 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/cron", "//java/google/registry/cron",
"//java/google/registry/dns", "//java/google/registry/dns",
@ -38,6 +27,16 @@ java_library(
"//java/google/registry/request", "//java/google/registry/request",
"//java/google/registry/util", "//java/google/registry/util",
"//javatests/google/registry/testing", "//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "clouddns", name = "clouddns",
srcs = glob(["*Test.java"]), srcs = glob(["*Test.java"]),
@ -18,6 +17,10 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/dns/writer/clouddns",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject", "//third_party/java/jsr330_inject",
@ -26,10 +29,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/dns/writer/clouddns",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "dnsupdate", name = "dnsupdate",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -16,6 +15,9 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/dns/writer/dnsupdate",
"//java/google/registry/model",
"//javatests/google/registry/testing",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/dnsjava", "//third_party/java/dnsjava",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -26,9 +28,6 @@ java_library(
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/dns/writer/dnsupdate",
"//java/google/registry/model",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "export", name = "export",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -23,18 +22,6 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-stubs",
"//third_party/java/appengine_gcs_client",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//third_party/java/jsr305_annotations",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
"//java/google/registry/bigquery", "//java/google/registry/bigquery",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/export", "//java/google/registry/export",
@ -47,6 +34,18 @@ java_library(
"//java/google/registry/util", "//java/google/registry/util",
"//javatests/google/registry/testing", "//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce", "//javatests/google/registry/testing/mapreduce",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-stubs",
"//third_party/java/appengine_gcs_client",
"//third_party/java/dagger",
"//third_party/java/joda_time",
"//third_party/java/jsr305_annotations",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
], ],
) )

View file

@ -5,7 +5,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "sheet", name = "sheet",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -14,6 +13,11 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/gdata:spreadsheet", "//java/com/google/gdata:spreadsheet",
"//java/google/registry/config",
"//java/google/registry/export/sheet",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/junit", "//third_party/java/junit",
@ -21,11 +25,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/config",
"//java/google/registry/export/sheet",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
# Needed for the documentation tests # Needed for the documentation tests
filegroup( filegroup(
name = "flows_files", name = "flows_files",
@ -31,19 +30,6 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/testing", "//java/com/google/common/testing",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-testing",
"//third_party/java/dagger",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/jsr305_annotations",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/dns", "//java/google/registry/dns",
"//java/google/registry/flows", "//java/google/registry/flows",
@ -59,6 +45,19 @@ java_library(
"//javatests/google/registry/testing", "//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce", "//javatests/google/registry/testing/mapreduce",
"//javatests/google/registry/xml", "//javatests/google/registry/xml",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-testing",
"//third_party/java/dagger",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/jsr305_annotations",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "groups", name = "groups",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -21,6 +20,10 @@ java_library(
"//java/com/google/api/client/testing/http", "//java/com/google/api/client/testing/http",
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/cron",
"//java/google/registry/groups",
"//java/google/registry/model",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-stubs", "//third_party/java/appengine:appengine-stubs",
"//third_party/java/appengine:appengine-testing", "//third_party/java/appengine:appengine-testing",
@ -29,10 +32,6 @@ java_library(
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/cron",
"//java/google/registry/groups",
"//java/google/registry/model",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,13 +7,17 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "inputs", name = "inputs",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/config",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-testing", "//third_party/java/appengine:appengine-testing",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
@ -22,11 +26,6 @@ java_library(
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/config",
"//java/google/registry/mapreduce/inputs",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "model", name = "model",
# There be circular dependencies down thar, so just have this # There be circular dependencies down thar, so just have this
@ -27,6 +26,13 @@ java_library(
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/testing", "//java/com/google/common/testing",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/config",
"//java/google/registry/flows",
"//java/google/registry/model",
"//java/google/registry/util",
"//java/google/registry/xml",
"//javatests/google/registry/testing",
"//javatests/google/registry/xml",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-testing", "//third_party/java/appengine:appengine-testing",
"//third_party/java/joda_money", "//third_party/java/joda_money",
@ -35,13 +41,6 @@ java_library(
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/config",
"//java/google/registry/flows",
"//java/google/registry/model",
"//java/google/registry/util",
"//java/google/registry/xml",
"//javatests/google/registry/testing",
"//javatests/google/registry/xml",
], ],
) )

View file

@ -5,7 +5,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "backend", name = "backend",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,12 +14,12 @@ java_library(
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
], ],
deps = [ deps = [
"//java/google/registry/module/backend",
"//javatests/google/registry/testing",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/module/backend",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -5,7 +5,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "frontend", name = "frontend",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,12 +14,12 @@ java_library(
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
], ],
deps = [ deps = [
"//java/google/registry/module/frontend",
"//javatests/google/registry/testing",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/module/frontend",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -5,7 +5,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "tools", name = "tools",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,11 +14,11 @@ java_library(
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
], ],
deps = [ deps = [
"//java/google/registry/module/tools",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/module/tools",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "metrics", name = "metrics",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -19,11 +18,11 @@ java_library(
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/monitoring/metrics",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/monitoring/metrics",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "whitebox", name = "whitebox",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -20,6 +19,14 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/testing", "//java/com/google/common/testing",
"//java/google/registry/bigquery",
"//java/google/registry/config",
"//java/google/registry/mapreduce",
"//java/google/registry/model",
"//java/google/registry/monitoring/whitebox",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-stubs", "//third_party/java/appengine:appengine-stubs",
"//third_party/java/appengine:appengine-testing", "//third_party/java/appengine:appengine-testing",
@ -31,14 +38,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/bigquery",
"//java/google/registry/config",
"//java/google/registry/mapreduce",
"//java/google/registry/model",
"//java/google/registry/monitoring/whitebox",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "pricing", name = "pricing",
srcs = glob(["*Test.java"]), srcs = glob(["*Test.java"]),
@ -16,15 +15,15 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/model",
"//java/google/registry/pricing",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/joda_money", "//third_party/java/joda_money",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/model",
"//java/google/registry/pricing",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "rdap", name = "rdap",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -17,6 +16,10 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/model",
"//java/google/registry/rdap",
"//java/google/registry/request",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -27,10 +30,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/model",
"//java/google/registry/rdap",
"//java/google/registry/request",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "rde", name = "rde",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -17,6 +16,21 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/config",
"//java/google/registry/gcs",
"//java/google/registry/keyring/api",
"//java/google/registry/mapreduce",
"//java/google/registry/model",
"//java/google/registry/rde",
"//java/google/registry/request",
"//java/google/registry/tldconfig/idn",
"//java/google/registry/util",
"//java/google/registry/xjc",
"//java/google/registry/xml",
"//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce",
"//javatests/google/registry/testing/sftp",
"//javatests/google/registry/xml",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
"//third_party/java/bouncycastle", "//third_party/java/bouncycastle",
@ -33,21 +47,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/config",
"//java/google/registry/gcs",
"//java/google/registry/keyring/api",
"//java/google/registry/mapreduce",
"//java/google/registry/model",
"//java/google/registry/rde",
"//java/google/registry/request",
"//java/google/registry/tldconfig/idn",
"//java/google/registry/util",
"//java/google/registry/xjc",
"//java/google/registry/xml",
"//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce",
"//javatests/google/registry/testing/sftp",
"//javatests/google/registry/xml",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "request", name = "request",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -16,6 +15,10 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/testing", "//java/com/google/common/testing",
"//java/google/registry/request",
"//java/google/registry/security",
"//javatests/google/registry/security",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/json_simple", "//third_party/java/json_simple",
@ -24,10 +27,6 @@ java_library(
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/request",
"//java/google/registry/security",
"//javatests/google/registry/security",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "security", name = "security",
srcs = glob( srcs = glob(
@ -18,6 +17,9 @@ java_library(
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/security",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-testing", "//third_party/java/appengine:appengine-testing",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -26,9 +28,6 @@ java_library(
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/security",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -5,7 +5,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "TestServer", name = "TestServer",
srcs = [ srcs = [
@ -23,11 +22,11 @@ java_library(
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/primitives", "//java/com/google/common/primitives",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/util",
"//third_party/java/auto:auto_value", "//third_party/java/auto:auto_value",
"//third_party/java/jetty/v6_1_22", "//third_party/java/jetty/v6_1_22",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//java/google/registry/util",
], ],
) )
@ -36,11 +35,11 @@ java_library(
srcs = ["Fixture.java"], srcs = ["Fixture.java"],
deps = [ deps = [
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/model",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//java/google/registry/model",
"//javatests/google/registry/testing",
], ],
) )
@ -55,11 +54,11 @@ java_library(
":TestServer", ":TestServer",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//third_party/java/jsr305_annotations",
"//third_party/java/servlet/servlet_api",
"//java/google/registry/module/backend", "//java/google/registry/module/backend",
"//java/google/registry/module/frontend", "//java/google/registry/module/frontend",
"//java/google/registry/ui/server/registrar", "//java/google/registry/ui/server/registrar",
"//third_party/java/jsr305_annotations",
"//third_party/java/servlet/servlet_api",
], ],
) )
@ -72,10 +71,10 @@ java_binary(
":RegistryTestServer", ":RegistryTestServer",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/net", "//java/com/google/common/net",
"//third_party/java/jcommander",
"//third_party/java/junit",
"//java/google/registry/tools/params", "//java/google/registry/tools/params",
"//java/google/registry/ui", "//java/google/registry/ui",
"//javatests/google/registry/testing", "//javatests/google/registry/testing",
"//third_party/java/jcommander",
"//third_party/java/junit",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "drive", name = "drive",
srcs = glob(["*Test.java"]), srcs = glob(["*Test.java"]),
@ -17,11 +16,11 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/storage/drive",
"//javatests/google/registry/testing",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/storage/drive",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -5,7 +5,6 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "testing", name = "testing",
srcs = glob( srcs = glob(
@ -29,6 +28,16 @@ java_library(
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/testing", "//java/com/google/common/testing",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/config",
"//java/google/registry/dns:constants",
"//java/google/registry/dns/writer",
"//java/google/registry/flows",
"//java/google/registry/model",
"//java/google/registry/pricing",
"//java/google/registry/request",
"//java/google/registry/tmch",
"//java/google/registry/util",
"//java/google/registry/xml",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-integration-testing", "//third_party/java/appengine:appengine-integration-testing",
"//third_party/java/appengine:appengine-stubs", "//third_party/java/appengine:appengine-stubs",
@ -48,16 +57,5 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/config",
"//java/google/registry/dns:constants",
"//java/google/registry/dns/writer",
"//java/google/registry/flows",
"//java/google/registry/model",
"//java/google/registry/pricing",
"//java/google/registry/request",
"//java/google/registry/tmch",
"//java/google/registry/util",
"//java/google/registry/xml",
], ],
) )

View file

@ -7,13 +7,17 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "mapreduce", name = "mapreduce",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/config",
"//java/google/registry/mapreduce",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/appengine:appengine-stubs", "//third_party/java/appengine:appengine-stubs",
"//third_party/java/appengine:appengine-testing", "//third_party/java/appengine:appengine-testing",
@ -25,11 +29,6 @@ java_library(
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/config",
"//java/google/registry/mapreduce",
"//java/google/registry/model",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -5,19 +5,18 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "sftp", name = "sftp",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/util",
"//third_party/java/apache_sshd", "//third_party/java/apache_sshd",
"//third_party/java/bouncycastle", "//third_party/java/bouncycastle",
"//third_party/java/bouncycastle_bcpg", "//third_party/java/bouncycastle_bcpg",
"//third_party/java/ftpserver", "//third_party/java/ftpserver",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/junit", "//third_party/java/junit",
"//java/google/registry/util",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "idn", name = "idn",
srcs = glob([ srcs = glob([
@ -16,10 +15,10 @@ java_library(
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//third_party/java/junit",
"//third_party/java/truth",
"//java/google/registry/tldconfig/idn", "//java/google/registry/tldconfig/idn",
"//javatests/google/registry/testing", "//javatests/google/registry/testing",
"//third_party/java/junit",
"//third_party/java/truth",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "tmch", name = "tmch",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -22,6 +21,11 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/tmch",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/bouncycastle", "//third_party/java/bouncycastle",
"//third_party/java/bouncycastle_bcpg", "//third_party/java/bouncycastle_bcpg",
@ -32,11 +36,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/tmch",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "tools", name = "tools",
srcs = glob([ srcs = glob([
@ -23,19 +22,6 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/reflect", "//java/com/google/common/reflect",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-remote-api-link",
"//third_party/java/jcommander",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j",
"//third_party/java/truth",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/flows", "//java/google/registry/flows",
"//java/google/registry/keyring/api", "//java/google/registry/keyring/api",
@ -53,6 +39,19 @@ java_library(
"//javatests/google/registry/rde", "//javatests/google/registry/rde",
"//javatests/google/registry/testing", "//javatests/google/registry/testing",
"//javatests/google/registry/xml", "//javatests/google/registry/xml",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine:appengine-remote-api-link",
"//third_party/java/jcommander",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/jsr305_annotations",
"//third_party/java/jsr330_inject",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/re2j",
"//third_party/java/truth",
], ],
) )

View file

@ -5,22 +5,21 @@ package(
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
java_library( java_library(
name = "params", name = "params",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/model",
"//java/google/registry/tools/params",
"//javatests/google/registry/testing",
"//third_party/java/hamcrest", "//third_party/java/hamcrest",
"//third_party/java/jcommander", "//third_party/java/jcommander",
"//third_party/java/joda_money", "//third_party/java/joda_money",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/model",
"//java/google/registry/tools/params",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "server", name = "server",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,6 +14,15 @@ java_library(
deps = [ deps = [
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/google/registry/groups",
"//java/google/registry/mapreduce",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/tools/server",
"//java/google/registry/util",
"//javatests/google/registry/model",
"//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce",
"//third_party/java/appengine:appengine-api-testonly", "//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/appengine_gcs_client", "//third_party/java/appengine_gcs_client",
"//third_party/java/appengine_mapreduce2:appengine_mapreduce", "//third_party/java/appengine_mapreduce2:appengine_mapreduce",
@ -26,15 +34,6 @@ java_library(
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/groups",
"//java/google/registry/mapreduce",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/tools/server",
"//java/google/registry/util",
"//javatests/google/registry/model",
"//javatests/google/registry/testing",
"//javatests/google/registry/testing/mapreduce",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "forms", name = "forms",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -15,13 +14,13 @@ java_library(
"//java/com/google/common/base", "//java/com/google/common/base",
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/testing", "//java/com/google/common/testing",
"//java/google/registry/ui/forms",
"//javatests/google/registry/testing",
"//third_party/java/hamcrest", "//third_party/java/hamcrest",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/ui/forms",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library", "closure_js_test") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library", "closure_js_test")
closure_js_library( closure_js_library(
name = "testing", name = "testing",
srcs = ["testing.js"], srcs = ["testing.js"],
@ -25,8 +24,8 @@ closure_js_test(
compilation_level = "WHITESPACE_ONLY", compilation_level = "WHITESPACE_ONLY",
deps = [ deps = [
":testing", ":testing",
"//javascript/closure",
"//java/google/registry/ui/js", "//java/google/registry/ui/js",
"//javascript/closure",
"//javascript/closure:testing", "//javascript/closure:testing",
], ],
) )

View file

@ -7,15 +7,14 @@ licenses(["notice"]) # Apache 2.0
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library", "closure_js_test") load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library", "closure_js_test")
closure_js_library( closure_js_library(
name = "console_test_util", name = "console_test_util",
srcs = ["console_test_util.js"], srcs = ["console_test_util.js"],
deps = [ deps = [
"//javascript/closure",
"//javascript/closure:testing",
"//java/google/registry/ui/js", "//java/google/registry/ui/js",
"//java/google/registry/ui/js/registrar", "//java/google/registry/ui/js/registrar",
"//javascript/closure",
"//javascript/closure:testing",
], ],
) )
@ -27,11 +26,11 @@ closure_js_test(
compilation_level = "WHITESPACE_ONLY", compilation_level = "WHITESPACE_ONLY",
deps = [ deps = [
":console_test_util", ":console_test_util",
"//javascript/closure",
"//java/google/registry/ui/js", "//java/google/registry/ui/js",
"//java/google/registry/ui/js/registrar", "//java/google/registry/ui/js/registrar",
"//java/google/registry/ui/soy/registrar:Console", "//java/google/registry/ui/soy/registrar:Console",
"//javatests/google/registry/ui/js:testing", "//javascript/closure",
"//javascript/closure:testing", "//javascript/closure:testing",
"//javatests/google/registry/ui/js:testing",
], ],
) )

View file

@ -7,17 +7,16 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "server", name = "server",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
deps = [ deps = [
"//third_party/java/hamcrest",
"//third_party/java/junit",
"//third_party/java/truth",
"//java/google/registry/ui/forms", "//java/google/registry/ui/forms",
"//java/google/registry/ui/server", "//java/google/registry/ui/server",
"//javatests/google/registry/testing", "//javatests/google/registry/testing",
"//third_party/java/hamcrest",
"//third_party/java/junit",
"//third_party/java/truth",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "registrar", name = "registrar",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -18,16 +17,6 @@ java_library(
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/testing", "//java/com/google/common/testing",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/braintree",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
"//java/google/registry/braintree", "//java/google/registry/braintree",
"//java/google/registry/config", "//java/google/registry/config",
"//java/google/registry/export/sheet", "//java/google/registry/export/sheet",
@ -39,6 +28,16 @@ java_library(
"//java/google/registry/util", "//java/google/registry/util",
"//javatests/google/registry/security", "//javatests/google/registry/security",
"//javatests/google/registry/testing", "//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/braintree",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/json_simple",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "util", name = "util",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -18,6 +17,8 @@ java_library(
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/com/google/common/testing", "//java/com/google/common/testing",
"//java/com/google/common/util/concurrent", "//java/com/google/common/util/concurrent",
"//java/google/registry/util",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-api", "//third_party/java/appengine:appengine-api",
"//third_party/java/joda_time", "//third_party/java/joda_time",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
@ -25,8 +26,6 @@ java_library(
"//third_party/java/mockito", "//third_party/java/mockito",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/util",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "whois", name = "whois",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
@ -17,6 +16,12 @@ java_library(
"//java/com/google/common/collect", "//java/com/google/common/collect",
"//java/com/google/common/io", "//java/com/google/common/io",
"//java/com/google/common/net", "//java/com/google/common/net",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//java/google/registry/whois",
"//javatests/google/registry/testing",
"//third_party/java/appengine:appengine-testing", "//third_party/java/appengine:appengine-testing",
"//third_party/java/dagger", "//third_party/java/dagger",
"//third_party/java/joda_time", "//third_party/java/joda_time",
@ -25,12 +30,6 @@ java_library(
"//third_party/java/objectify:objectify-v4_1", "//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api", "//third_party/java/servlet/servlet_api",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/config",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/util",
"//java/google/registry/whois",
"//javatests/google/registry/testing",
], ],
) )

View file

@ -7,20 +7,19 @@ licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules") load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library( java_library(
name = "xjc", name = "xjc",
srcs = glob(["*.java"]), srcs = glob(["*.java"]),
resources = glob(["testdata/*.xml"]), resources = glob(["testdata/*.xml"]),
deps = [ deps = [
"//java/google/registry/util",
"//java/google/registry/xjc",
"//javatests/google/registry/testing",
"//third_party/java/hamcrest", "//third_party/java/hamcrest",
"//third_party/java/jsr305_annotations", "//third_party/java/jsr305_annotations",
"//third_party/java/junit", "//third_party/java/junit",
"//third_party/java/re2j", "//third_party/java/re2j",
"//third_party/java/truth", "//third_party/java/truth",
"//java/google/registry/util",
"//java/google/registry/xjc",
"//javatests/google/registry/testing",
], ],
) )

Some files were not shown because too many files have changed in this diff Show more