Skip to content
Snippets Groups Projects
Commit 736bd651 authored by Yang Gao's avatar Yang Gao
Browse files

Avoid generating libs for unknown types.

parent b12dc6b5
No related branches found
No related tags found
No related merge requests found
...@@ -765,29 +765,6 @@ cc_library( ...@@ -765,29 +765,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( cc_library(
name = "grpc_csharp_ext", name = "grpc_csharp_ext",
srcs = [ srcs = [
......
...@@ -54,7 +54,7 @@ def get_deps(target_dict): ...@@ -54,7 +54,7 @@ def get_deps(target_dict):
%> %>
% for lib in libs: % for lib in libs:
% if lib.build != "private": % if lib.build in ("all", "protoc"):
${cc_library(lib)} ${cc_library(lib)}
% endif % endif
% endfor % endfor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment