1
0
mirror of https://github.com/google/nomulus synced 2026-01-08 07:11:44 +00:00

Set compatible_with=appengine on GAE targets

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=128475519
This commit is contained in:
Chris Povirk
2016-07-26 08:46:08 -07:00
committed by Justine Tunney
parent 6b5c00e143
commit 5332ac4e4a
42 changed files with 83 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ genrule(
"@SuppressWarnings({\"unchecked\",\"serial\",\"cast\"}) " +
"public class/'",
]),
compatible_with = ["//buildenv/target:appengine"],
tools = ["//third_party/java/jaxb:jaxb-xjc"],
)
@@ -49,6 +50,7 @@ genrule(
srcs = ["package-info.java.in"],
outs = pkginfo_generated_files,
cmd = "$(location :make_pkginfo) $(SRCS) $(@D)",
compatible_with = ["//buildenv/target:appengine"],
tools = [
":jaxb_srcs",
":make_pkginfo",
@@ -58,6 +60,7 @@ genrule(
java_library(
name = "xjc",
srcs = glob(["*.java"]) + xjc_generated_files + pkginfo_generated_files,
compatible_with = ["//buildenv/target:appengine"],
deps = [
"//java/com/google/common/collect",
"//third_party/java/joda_time",