Skip to content
Snippets Groups Projects
Commit ff20c2b4 authored by Rob Earhart's avatar Rob Earhart
Browse files

Add protobuf_clib to deps of grpc++_codegen_lib

This is required in order to compile grpc++_codegen_lib.
parent b7b8d05f
No related branches found
No related tags found
No related merge requests found
...@@ -1041,6 +1041,7 @@ cc_library( ...@@ -1041,6 +1041,7 @@ cc_library(
".", ".",
], ],
deps = [ deps = [
"//external:protobuf_clib",
], ],
) )
......
...@@ -49,7 +49,9 @@ ...@@ -49,7 +49,9 @@
] ]
if target_dict.get('build', None) == 'protoc': if target_dict.get('build', None) == 'protoc':
deps.append("//external:protobuf_compiler") deps.append("//external:protobuf_compiler")
if target_dict['name'] == 'grpc++_unsecure' or target_dict['name'] == 'grpc++': if (target_dict['name'] == 'grpc++_unsecure' or
target_dict['name'] == 'grpc++' or
target_dict['name'] == 'grpc++_codegen_lib'):
deps.append("//external:protobuf_clib") deps.append("//external:protobuf_clib")
elif target_dict['name'] == 'grpc': elif target_dict['name'] == 'grpc':
deps.append("//external:zlib") deps.append("//external:zlib")
......
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