We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783da0a commit 563f613Copy full SHA for 563f613
bazel/private/BUILD
@@ -160,6 +160,13 @@ bzl_library(
160
],
161
)
162
163
+bzl_library(
164
+ name = "cc_proto_aspect_name_bzl",
165
+ srcs = ["cc_proto_aspect_name.bzl"],
166
+ visibility = [
167
+ ],
168
+)
169
+
170
bzl_library(
171
name = "toolchain_helpers_bzl",
172
srcs = [
bazel/private/cc_proto_aspect_name.bzl
@@ -0,0 +1,8 @@
1
+"""Exposes cc_proto_aspect name to select paths"""
2
3
+visibility([
4
+ "//third_party/crubit/rs_bindings_from_cc/bazel_support",
5
+])
6
7
+# Due to an unusual edge case, the Crubit aspect needs to know the name of the C++ proto aspect.
8
+cc_proto_aspect_name = "//bazel/private:google_cc_proto_library.bzl%cc_proto_aspect"
0 commit comments