aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazel/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'bazel/BUILD')
-rw-r--r--bazel/BUILD9
1 files changed, 9 insertions, 0 deletions
diff --git a/bazel/BUILD b/bazel/BUILD
new file mode 100644
index 0000000000..940a379404
--- /dev/null
+++ b/bazel/BUILD
@@ -0,0 +1,9 @@
+package(default_visibility = ["//:__subpackages__"])
+
+load(":cc_grpc_library.bzl", "cc_grpc_library")
+
+cc_grpc_library(
+ name = "well_known_protos",
+ srcs = "@submodule_protobuf//:well_known_protos",
+ proto_only = True,
+)