MOE strip compatible_with

This is an internal-only feature that breaks the open source build.

CL created with:

    dr-replace '(compatible_with.*)' '\1  # MOE:strip_line'

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=128852873
This commit is contained in:
Justine Tunney 2016-07-29 15:21:28 -07:00
parent e1dc6d5adb
commit 7f3f03ee97
41 changed files with 0 additions and 82 deletions

View file

@ -10,7 +10,6 @@ exports_files(["globals.txt"])
filegroup(
name = "assets_recursive",
srcs = glob(["assets/**"]),
compatible_with = ["//buildenv/target:appengine"],
)
filegroup(
@ -21,7 +20,6 @@ filegroup(
"//java/google/registry/ui/soy:js_files",
"//java/google/registry/ui/soy/registrar:js_files",
],
compatible_with = ["//buildenv/target:appengine"],
)
filegroup(
@ -58,7 +56,6 @@ filegroup(
java_library(
name = "ui",
srcs = glob(["*.java"]),
compatible_with = ["//buildenv/target:appengine"],
deps = [
"//java/com/google/common/base",
"//third_party/java/appengine:appengine-api",
@ -71,7 +68,6 @@ java_library(
closure_js_deps(
name = "deps",
compatible_with = ["//buildenv/target:appengine"],
deps = [
"//java/google/registry/ui/js",
"//java/google/registry/ui/js/registrar",
@ -88,7 +84,6 @@ closure_js_deps(
# non-union minified equivalents.
closure_js_binary(
name = "registrar_bin",
compatible_with = ["//buildenv/target:appengine"],
css = "//java/google/registry/ui/css:registrar_bin",
entry_points = ["goog:registry.registrar.main"],
deps = [
@ -105,7 +100,6 @@ genrule(
outs = ["registrar_bin_map.js"],
cmd = "cat $(location registrar_bin.js) >$@ && " +
"echo '//# sourceMappingURL=registrar_bin.js.map' >>$@",
compatible_with = ["//buildenv/target:appengine"],
)
# This target creates a compiled JavaScript file where symbols are renamed to
@ -115,7 +109,6 @@ genrule(
# an extra underscore.
closure_js_binary(
name = "registrar_dbg",
compatible_with = ["//buildenv/target:appengine"],
css = "//java/google/registry/ui/css:registrar_dbg",
debug = 1,
entry_points = ["goog:registry.registrar.main"],
@ -131,7 +124,6 @@ closure_js_binary(
closure_js_binary(
name = "brain_bin",
compatible_with = ["//buildenv/target:appengine"],
entry_points = ["goog:registry.registrar.BrainFrame.main"],
deps = [
"//java/google/registry/ui/externs",
@ -145,5 +137,4 @@ genrule(
outs = ["brain_bin_map.js"],
cmd = "cat $(location brain_bin.js) >$@ && " +
"echo '//# sourceMappingURL=brain_bin.js.map' >>$@",
compatible_with = ["//buildenv/target:appengine"],
)