aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/runfiles/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/runfiles/BUILD')
-rw-r--r--src/tools/runfiles/BUILD43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/tools/runfiles/BUILD b/src/tools/runfiles/BUILD
deleted file mode 100644
index 9dd99e6b04..0000000000
--- a/src/tools/runfiles/BUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# This package contains sources for language-specific runfiles libraries.
-#
-# Do not depend on these rules. Depend on the ones in @bazel_tools//tools/runfiles instead, that way
-# your binary won't require the Bazel source tree to work correctly.
-
-package(default_visibility = ["//visibility:private"])
-
-filegroup(
- name = "srcs",
- srcs = glob(
- ["**"],
- exclude = [".*"], # .swp files and such
- ) + [
- "//src/tools/runfiles/java/com/google/devtools/build/runfiles:srcs",
- ],
- visibility = ["//src:__pkg__"],
-)
-
-filegroup(
- name = "embedded_tools",
- srcs = [
- "BUILD.tools",
- "//src/tools/runfiles/java/com/google/devtools/build/runfiles:embedded_tools",
- ],
- visibility = ["//src:__pkg__"],
-)
-
-test_suite(
- name = "windows_tests",
- tags = [
- "-no_windows",
- "-slow",
- ],
-)
-
-test_suite(
- name = "all_windows_tests",
- tests = [
- ":windows_tests",
- "//src/tools/runfiles/java/com/google/devtools/build/runfiles:all_windows_tests",
- ],
- visibility = ["//src:__pkg__"],
-)