mirror of
https://github.com/google/nomulus.git
synced 2025-05-03 21:47:51 +02:00
This allows separate Bazel projects to reference Nomulus as an external repository. They can then copy the [] directory structure into their own project and customize the Action and Module lists for the GAE modules in their own deployment. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=136863886
72 lines
1.9 KiB
Text
72 lines
1.9 KiB
Text
package(
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
load("//java/google/registry/xjc:generated_files.bzl", "pkginfo_generated_files", "xjc_generated_files")
|
|
|
|
|
|
java_library(
|
|
name = "xjc",
|
|
srcs = glob(["*.java"]) + xjc_generated_files + pkginfo_generated_files,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/com/google/common/collect",
|
|
"//third_party/java/joda_time",
|
|
"//third_party/java/jsr305_annotations",
|
|
"//java/google/registry/xml",
|
|
],
|
|
)
|
|
|
|
sh_binary(
|
|
name = "list_generated_files",
|
|
srcs = ["list_generated_files.sh"],
|
|
data = [
|
|
"bindings.xjb",
|
|
"//third_party/java/jaxb:jaxb-xjc",
|
|
"//java/google/registry/xml:xml_schema_files",
|
|
],
|
|
)
|
|
|
|
genrule(
|
|
name = "jaxb_srcs",
|
|
srcs = [
|
|
"bindings.xjb",
|
|
"//java/google/registry/xml:xml_schema_files",
|
|
],
|
|
outs = xjc_generated_files,
|
|
cmd = " && ".join([
|
|
"REP=$$(pwd)",
|
|
"XJC=$$REP/$(location //third_party/java/jaxb:jaxb-xjc)",
|
|
"OUT=$$REP/$(GENDIR)/java",
|
|
"TMP=$$(mktemp -d $${TMPDIR:-/tmp}/jaxb.XXXXXXXXXX)",
|
|
"mkdir -p $$OUT",
|
|
"cp $(SRCS) $$TMP",
|
|
"cd $$TMP",
|
|
"$$XJC -npa -quiet -extension -d $$OUT -b *.xjb *.xsd",
|
|
("find $$OUT -name '*.java' | xargs sed -i 's/" +
|
|
"public class/" +
|
|
"@SuppressWarnings({\"unchecked\",\"serial\",\"cast\"}) " +
|
|
"public class/'"),
|
|
"cd $$REP",
|
|
"rm -rf $$TMP",
|
|
]),
|
|
tools = ["//third_party/java/jaxb:jaxb-xjc"],
|
|
)
|
|
|
|
sh_binary(
|
|
name = "make_pkginfo",
|
|
srcs = ["make_pkginfo.sh"],
|
|
)
|
|
|
|
genrule(
|
|
name = "pkginfo_srcs",
|
|
srcs = ["package-info.java.in"],
|
|
outs = pkginfo_generated_files,
|
|
cmd = "$(location :make_pkginfo) $(SRCS) $(@D)",
|
|
tools = [
|
|
":jaxb_srcs",
|
|
":make_pkginfo",
|
|
],
|
|
)
|