Skip to content
Snippets Groups Projects
Commit 720a208b authored by Nicolas Noble's avatar Nicolas Noble
Browse files

Merge pull request #1303 from yang-g/codegen

Avoid generating libs for unknown types.
parents d35b7107 736bd651
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.
Please register or to comment