Chromium Code Reviews| Index: BUILD.gn |
| diff --git a/BUILD.gn b/BUILD.gn |
| index a33d8a3ce48dc544720bcd00afec5773f411e26e..c36924bcfc6a0d978303b21176ed68c6c257ff7e 100644 |
| --- a/BUILD.gn |
| +++ b/BUILD.gn |
| @@ -131,7 +131,9 @@ component("gpr") { |
| configs += [ |
| "//build/config/compiler:no_chromium_code", |
| ] |
| - public_configs = [ ":grpc_config" ] |
| + public_configs = [ |
| + ":grpc_config", |
| + ] |
| } |
| @@ -508,7 +510,9 @@ component("grpc") { |
| configs += [ |
| "//build/config/compiler:no_chromium_code", |
| ] |
| - public_configs = [ ":grpc_config" ] |
| + public_configs = [ |
| + ":grpc_config", |
| + ] |
| } |
| @@ -860,7 +864,9 @@ component("grpc_cronet") { |
| configs += [ |
| "//build/config/compiler:no_chromium_code", |
| ] |
| - public_configs = [ ":grpc_config" ] |
| + public_configs = [ |
| + ":grpc_config", |
| + ] |
| } |
| @@ -1174,13 +1180,16 @@ component("grpc_unsecure") { |
| "src/core/plugin_registry/grpc_unsecure_plugin_registry.c", |
| ] |
| deps = [ |
| + "//third_party/zlib", |
|
Garrett Casto
2016/08/15 21:20:59
Can you add a comment in the CL description for th
xyzzyz
2016/08/15 21:59:20
Yes, it was. Editing CL description.
|
| ":gpr", |
| ] |
| configs -= [ "//build/config/compiler:chromium_code" ] |
| configs += [ |
| "//build/config/compiler:no_chromium_code", |
| ] |
| - public_configs = [ ":grpc_config" ] |
| + public_configs = [ |
| + ":grpc_config", |
| + ] |
| } |
| @@ -1334,9 +1343,11 @@ component("grpc++") { |
| configs -= [ "//build/config/compiler:chromium_code" ] |
| configs += [ |
| "//build/config/compiler:no_chromium_code", |
| + ] |
| + public_configs = [ |
| + ":grpc_config", |
| ":grpc_no_cxx11_threads", |
| ] |
| - public_configs = [ ":grpc_config" ] |
| } |
| @@ -1482,9 +1493,11 @@ component("grpc++_unsecure") { |
| configs -= [ "//build/config/compiler:chromium_code" ] |
| configs += [ |
| "//build/config/compiler:no_chromium_code", |
| + ] |
| + public_configs = [ |
| + ":grpc_config", |
| ":grpc_no_cxx11_threads", |
| ] |
| - public_configs = [ ":grpc_config" ] |
| } |
| @@ -1521,7 +1534,9 @@ component("grpc_plugin_support") { |
| configs += [ |
| "//build/config/compiler:no_chromium_code", |
| ] |
| - public_configs = [ ":grpc_config" ] |
| + public_configs = [ |
| + ":grpc_config", |
| + ] |
| } |