aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/runfiles
diff options
context:
space:
mode:
authorGravatar laszlocsomor <laszlocsomor@google.com>2018-08-10 04:25:08 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-08-10 04:26:21 -0700
commit5681f9d19f66e6d8bab382d9fe57484f4c120f9b (patch)
tree8254240118905e4f53f288aaabb8667b32565b04 /tools/runfiles
parent9e18b2cdf9fd5dc1ea429fd6c21407d53ceb38ad (diff)
Java, runfiles: move runfiles library sources
Move the Java runfiles library's sources from //src/tools/runfiles/j/c/g/devtools/build/runfiles:* to //tools/java/runfiles. Fixes https://github.com/bazelbuild/bazel/issues/5803 RELNOTES[NEW]: Java, runfiles: the Java runfiles library is now in @bazel_tools//tools/java/runfiles. The old target (@bazel_tools//tools/runfiles:java-runfiles) is deprecated and will be removed in Bazel 0.18.0. PiperOrigin-RevId: 208191521
Diffstat (limited to 'tools/runfiles')
-rw-r--r--tools/runfiles/BUILD.tools7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/runfiles/BUILD.tools b/tools/runfiles/BUILD.tools
index 6f107ea3e7..04c8e6fc3d 100644
--- a/tools/runfiles/BUILD.tools
+++ b/tools/runfiles/BUILD.tools
@@ -1,7 +1,6 @@
-package(default_visibility = ["//visibility:public"])
-
java_library(
name = "java-runfiles",
- exports = ["//src/tools/runfiles/java/com/google/devtools/build/runfiles"],
- deprecation = "Depend on @bazel_tools//tools/java/runfiles instead. This target goes away in Bazel release 0.18.0",
+ exports = ["//tools/java/runfiles"],
+ visibility = ["//visibility:public"],
+ deprecation = "Depend on @bazel_tools//tools/java/runfiles instead. This target will be deleted in Bazel 0.18.0",
)