diff options
-rw-r--r-- | BUILD | 23 | ||||
-rw-r--r-- | templates/BUILD.template | 2 |
2 files changed, 1 insertions, 24 deletions
@@ -766,29 +766,6 @@ cc_library( cc_library( - name = "pubsub_client_lib", - srcs = [ - "examples/pubsub/label.proto", - "examples/pubsub/empty.proto", - "examples/pubsub/pubsub.proto", - "examples/pubsub/publisher.cc", - "examples/pubsub/subscriber.cc", - ], - hdrs = [ - ], - includes = [ - "include", - ".", - ], - deps = [ - ":grpc++", - ":grpc", - ":gpr", - ], -) - - -cc_library( name = "grpc_csharp_ext", srcs = [ "src/csharp/ext/grpc_csharp_ext.c", diff --git a/templates/BUILD.template b/templates/BUILD.template index 8303b9f8e9..fdf87bd29f 100644 --- a/templates/BUILD.template +++ b/templates/BUILD.template @@ -54,7 +54,7 @@ def get_deps(target_dict): %> % for lib in libs: -% if lib.build != "private": +% if lib.build in ("all", "protoc"): ${cc_library(lib)} % endif % endfor |