aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazel/BUILD
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2017-01-17 13:03:50 -0800
committerGravatar GitHub <noreply@github.com>2017-01-17 13:03:50 -0800
commit42dc988432821a3142b7ababfa695fed05a34d4e (patch)
tree66850f0f1020b80f00eaa0fe0d5ea96f1d4f83c4 /bazel/BUILD
parentb997cf6fdeac14c56486d2f65452dc90346b41af (diff)
parent24263c3f7a3b04f073712e40376829e47772d7db (diff)
Merge pull request #9303 from nicolasnoble/bazel-fixes
Fixing a few items with the new Bazel BUILD system
Diffstat (limited to 'bazel/BUILD')
-rw-r--r--bazel/BUILD8
1 files changed, 7 insertions, 1 deletions
diff --git a/bazel/BUILD b/bazel/BUILD
index 940a379404..44a1673212 100644
--- a/bazel/BUILD
+++ b/bazel/BUILD
@@ -2,8 +2,14 @@ package(default_visibility = ["//:__subpackages__"])
load(":cc_grpc_library.bzl", "cc_grpc_library")
+proto_library(
+ name = "well_known_protos_list",
+ srcs = ["@submodule_protobuf//:well_known_protos"],
+)
+
cc_grpc_library(
name = "well_known_protos",
- srcs = "@submodule_protobuf//:well_known_protos",
+ srcs = "well_known_protos_list",
+ deps = [],
proto_only = True,
)