google-nomulus/javatests/google/registry/pricing/BUILD
mmuller b7d4e4a5f8 Implement EppCommandSpecializer
"EppCommandSpecializer" generates a price compositor for exposing a set of fees to the higher level flow logic.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=125082714
2016-06-27 16:06:21 -04:00

35 lines
958 B
Text

package(
default_testonly = 1,
default_visibility = ["//java/google/registry:registry_project"],
)
licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library(
name = "pricing",
srcs = glob(["*Test.java"]),
deps = [
"//java/com/google/common/annotations",
"//java/com/google/common/collect",
"//java/com/google/common/io",
"//java/com/google/common/net",
"//third_party/java/joda_money",
"//third_party/java/joda_time",
"//third_party/java/junit",
"//third_party/java/mockito",
"//third_party/java/truth",
"//java/google/registry/model",
"//java/google/registry/pricing",
"//java/google/registry/util",
"//javatests/google/registry/testing",
],
)
GenTestRules(
name = "GeneratedTestRules",
test_files = glob(["*Test.java"]),
deps = [":pricing"],
)