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

Unified Diff: webrtc/build/webrtc.gni

Issue 2311843002: GN Templates: Move common_inherited_config to the template. (Closed)
Patch Set: Created 4 years, 3 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 | « webrtc/base/BUILD.gn ('k') | webrtc/call/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/build/webrtc.gni
diff --git a/webrtc/build/webrtc.gni b/webrtc/build/webrtc.gni
index c2f48a990c9a4c24e7dfa3a1e611d8d25819f995..59a0163683e1bf511819e655c90cd23edde1c736 100644
--- a/webrtc/build/webrtc.gni
+++ b/webrtc/build/webrtc.gni
@@ -162,12 +162,13 @@ rtc_opus_dir = "//third_party/opus"
webrtc_root = get_path_info("../", "abspath")
# Global configuration that should be applied to all WebRTC targets.
-# You normally shouldn't need to # include this in your target as it's
+# You normally shouldn't need to include this in your target as it's
# automatically included when using the rtc_* templates.
# It sets defines, include paths and compilation warnings accordingly,
# both for WebRTC stand-alone builds and for the scenario when WebRTC
# native code is built as part of Chromium.
rtc_common_config = webrtc_root + ":common_config"
+rtc_common_inherited_config = webrtc_root + ":common_inherited_config"
kjellander_webrtc 2016/09/05 12:41:31 Add a separate comment about this one: Global pub
ehmaldonado_webrtc 2016/09/05 12:49:59 Done.
# Common configs to remove or add in all rtc targets.
rtc_remove_configs = []
@@ -204,11 +205,16 @@ template("rtc_test") {
"*",
[
"configs",
+ "public_configs",
"suppressed_configs",
])
configs += invoker.configs
configs -= rtc_remove_configs
configs -= invoker.suppressed_configs
+ public_configs = [ rtc_common_inherited_config ]
+ if (defined(invoker.public_configs)) {
kjellander_webrtc 2016/09/05 12:41:31 I guess this check is needed because public_config
ehmaldonado_webrtc 2016/09/05 12:49:59 Yes, the default configs is defined in BUILDCONFIG
+ public_configs += invoker.public_configs
+ }
}
}
@@ -218,11 +224,16 @@ template("rtc_source_set") {
"*",
[
"configs",
+ "public_configs",
"suppressed_configs",
])
configs += invoker.configs
configs -= rtc_remove_configs
configs -= invoker.suppressed_configs
+ public_configs = [ rtc_common_inherited_config ]
+ if (defined(invoker.public_configs)) {
+ public_configs += invoker.public_configs
+ }
}
}
@@ -233,6 +244,7 @@ template("rtc_executable") {
[
"deps",
"configs",
+ "public_configs",
"suppressed_configs",
])
configs += invoker.configs
@@ -242,6 +254,10 @@ template("rtc_executable") {
"//build/config/sanitizers:deps",
]
deps += invoker.deps
+ public_configs = [ rtc_common_inherited_config ]
+ if (defined(invoker.public_configs)) {
+ public_configs += invoker.public_configs
+ }
}
}
@@ -251,10 +267,15 @@ template("rtc_static_library") {
"*",
[
"configs",
+ "public_configs",
"suppressed_configs",
])
configs += invoker.configs
configs -= rtc_remove_configs
configs -= invoker.suppressed_configs
+ public_configs = [ rtc_common_inherited_config ]
+ if (defined(invoker.public_configs)) {
+ public_configs += invoker.public_configs
+ }
}
}
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/call/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698