From a14313b581e935c5b6aa8ef996450776d3a600f2 Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten Date: Mon, 23 Jun 2025 07:28:11 -0700 Subject: [PATCH] Remove the extra coverage file support. PiperOrigin-RevId: 774770081 (cherry picked from commit 87968905b9ecb828e27dc014d5a6aedfe6be0b2b) --- BUILD | 1 - tools/BUILD | 17 ----------------- 2 files changed, 18 deletions(-) delete mode 100644 tools/BUILD 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__"], -)