From 9d77453e81945e794fa9a71680b0fad6b802fccf Mon Sep 17 00:00:00 2001 From: PINS Team Date: Thu, 12 Dec 2024 19:08:28 +0000 Subject: [PATCH] PUBLIC: [P4-Constraints] Add a new load statement for proto rules. LSC: Add load statements for Proto rules Adds required load statements for Proto rules to BUILD files. This is a no-op as the rules are implicitly added to BUILD files via the blaze prelude file. Explicit load statements are being added so this injection can be removed. For setting up Copybara transformations see: go/bazel-rules-copybara See go/add_builtins_rule_loads Tested: TAP --sample ran all affected tests and none failed http://test/OCL:704530434:BASE:704515888:1733806709120:c4a70885 PiperOrigin-RevId: 705566103 --- p4_constraints/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/p4_constraints/BUILD.bazel b/p4_constraints/BUILD.bazel index 7e3a20e..bb22274 100644 --- a/p4_constraints/BUILD.bazel +++ b/p4_constraints/BUILD.bazel @@ -1,3 +1,4 @@ +# GOOGLE ONLY (DO NOT REMOVE): load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library") load("@rules_cc//cc:defs.bzl", "cc_proto_library") load("@rules_proto//proto:defs.bzl", "proto_library")