summaryrefslogtreecommitdiff
path: root/utils/bazel/llvm-project-overlay
diff options
context:
space:
mode:
authorKeith Smiley <keithbsmiley@gmail.com>2025-11-20 11:20:17 -0800
committerGitHub <noreply@github.com>2025-11-20 11:20:17 -0800
commit930066f6e4e499a93d0f3799f275c5d37de48f6b (patch)
treea583188cb833e2ca4735314b466fa39990a73cc9 /utils/bazel/llvm-project-overlay
parent88055b3a56c6080f08dd83b954f61d84e8cdefe2 (diff)
[bazel] Add explicit dep on protobuf (#168928)
This is required for correctly loading the protobuf rules. It's possible we could drop the version here to a lower version, as long as that version supports the versions of bazel we support. I picked this because it is the current version being used by bazel 8.0.0 (which is defined in the .bazelversion). Users can override this in their project anyways if they need an older one
Diffstat (limited to 'utils/bazel/llvm-project-overlay')
-rw-r--r--utils/bazel/llvm-project-overlay/clang/BUILD.bazel2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/clang/BUILD.bazel b/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
index 790709bdef05..0dca7a84fb3d 100644
--- a/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
@@ -2,6 +2,8 @@
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+load("@com_google_protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
+load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
load("@rules_python//python:defs.bzl", "py_binary")
load(