aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/jdk
diff options
context:
space:
mode:
authorGravatar tomlu <tomlu@google.com>2017-11-30 15:08:40 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2017-11-30 15:10:20 -0800
commit1a483d42df5bb42bcdc1f5f19662bcd1debd399d (patch)
tree8db9836b693464b9093359a5cf2d632aece8f0e8 /tools/jdk
parentb2d82018906b15cf979ea74444c55d828a5b6ca7 (diff)
Move bazel conditions into src/conditions.
This will enable an easier transition from checked-in BUILD files to ones generated by copybara. RELNOTES: None PiperOrigin-RevId: 177514519
Diffstat (limited to 'tools/jdk')
-rw-r--r--tools/jdk/BUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/jdk/BUILD b/tools/jdk/BUILD
index fb24b3ea24..3889dd39e9 100644
--- a/tools/jdk/BUILD
+++ b/tools/jdk/BUILD
@@ -74,7 +74,7 @@ alias(
filegroup(
name = "ijar",
srcs = select({
- "//src:remote": ["//third_party/ijar:ijar"],
+ "//src/conditions:remote": ["//third_party/ijar:ijar"],
"//conditions:default": glob(["ijar/*"]),
}),
)
@@ -88,7 +88,7 @@ filegroup(
filegroup(
name = "singlejar",
srcs = select({
- "//src:remote": ["//src/tools/singlejar:singlejar"],
+ "//src/conditions:remote": ["//src/tools/singlejar:singlejar"],
"//conditions:default": glob(["singlejar/*"]),
}),
)