Remove out of order load lint warnings.

The copybara configuration has been broken by []

PiperOrigin-RevId: 621998904
Change-Id: I47e6b7b95bc9d8086547ae928065f67ac3f0006a
This commit is contained in:
Googler 2024-04-04 16:04:43 -07:00 committed by Copybara-Service
parent 4a62c69330
commit 510c6dc9da
1 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
load("//tools/build_defs/proto/cpp:cc_proto_library.bzl", "cc_proto_library")
"""Starlark rules for building C++ projects.""" """Starlark rules for building C++ projects."""
load("//cc/private/rules_impl:cc_flags_supplier.bzl", _cc_flags_supplier = "cc_flags_supplier") load("//cc/private/rules_impl:cc_flags_supplier.bzl", _cc_flags_supplier = "cc_flags_supplier")
@ -104,7 +106,7 @@ def cc_proto_library(**attrs):
""" """
# buildifier: disable=native-cc # buildifier: disable=native-cc
native.cc_proto_library(**_add_tags(attrs)) cc_proto_library(**_add_tags(attrs))
def fdo_prefetch_hints(**attrs): def fdo_prefetch_hints(**attrs):
"""Bazel fdo_prefetch_hints rule. """Bazel fdo_prefetch_hints rule.