diff --git a/BUILD b/BUILD index 18eeda3f..53538104 100644 --- a/BUILD +++ b/BUILD @@ -31,7 +31,6 @@ filegroup( "//lib:for_bazel_tests", "//platforms:for_bazel_tests", "//rules:for_bazel_tests", - "//tools:for_bazel_tests", "//xcode:for_bazel_tests", ], # Exposed publicly just so other rules can use this if they set up diff --git a/tools/BUILD b/tools/BUILD deleted file mode 100644 index ccd26e1d..00000000 --- a/tools/BUILD +++ /dev/null @@ -1,17 +0,0 @@ -licenses(["notice"]) - -# Additional files, such as tools, that should be present in a test's runfiles -# during coverage collection. -filegroup( - name = "coverage_support", - # Public so other rules can add the dependencies via this group. - visibility = ["//visibility:public"], -) - -# Consumed by bazel tests. -filegroup( - name = "for_bazel_tests", - testonly = 1, - srcs = glob(["**"]), - visibility = ["//:__pkg__"], -)