No public description
PiperOrigin-RevId: 802421915
diff --git a/centipede/BUILD b/centipede/BUILD
index 783e687..4acaeac 100644
--- a/centipede/BUILD
+++ b/centipede/BUILD
@@ -16,6 +16,9 @@
# Centipede: an experimental distributed fuzzing engine.
load("@rules_proto//proto:defs.bzl", "proto_library")
+load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
+load("@rules_cc//cc:cc_library.bzl", "cc_library")
+load("@rules_cc//cc:cc_test.bzl", "cc_test")
load(":instrument.bzl", "cc_uninstrumented_binary")
VISIBILITY = ["//visibility:public"]
diff --git a/centipede/dso_example/BUILD b/centipede/dso_example/BUILD
index 5fd7e44..1a2effe 100644
--- a/centipede/dso_example/BUILD
+++ b/centipede/dso_example/BUILD
@@ -14,6 +14,8 @@
# Build file for the dso_example
+load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
+
# Shared library that we want to fuzz, built with (some) coverage instrumentation.
# It has unresolved instrumentation symbol(s) which will be resolved dynamically.
cc_binary(
diff --git a/centipede/testing/BUILD b/centipede/testing/BUILD
index b88acf9..12a8e2c 100644
--- a/centipede/testing/BUILD
+++ b/centipede/testing/BUILD
@@ -12,6 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
+load("@rules_cc//cc:cc_library.bzl", "cc_library")
+load("@rules_cc//cc:cc_shared_library.bzl", "cc_shared_library")
load(":build_defs.bzl", "centipede_fuzz_target")
package(default_visibility = [