Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Unified Diff: BUILD.gn

Issue 2214453002: Update BUILD.gn template (Closed) Base URL: https://chromium.googlesource.com/external/github.com/grpc/grpc@2016-07-27
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | templates/BUILD.gn.template » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
+ ]
}
« no previous file with comments | « no previous file | templates/BUILD.gn.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698