aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/java/runfiles/BUILD.tools
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/java/runfiles/BUILD.tools
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/java/runfiles/BUILD.tools')
-rw-r--r--tools/java/runfiles/BUILD.tools8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/java/runfiles/BUILD.tools b/tools/java/runfiles/BUILD.tools
index 011a549ba3..a2ac4f58cd 100644
--- a/tools/java/runfiles/BUILD.tools
+++ b/tools/java/runfiles/BUILD.tools
@@ -1,6 +1,8 @@
-alias(
+java_library(
name = "runfiles",
- # TODO(laszlocsomor): move the sources to this package.
- actual = "//src/tools/runfiles/java/com/google/devtools/build/runfiles",
+ srcs = [
+ "Runfiles.java",
+ "Util.java",
+ ],
visibility = ["//visibility:public"],
)