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

Unified Diff: webrtc/examples/BUILD.gn

Issue 2997023002: Remove dep on system_wrappers for apprtc and use only framework. (Closed)
Patch Set: re-add system_wrappers for mac Created 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/BUILD.gn
diff --git a/webrtc/examples/BUILD.gn b/webrtc/examples/BUILD.gn
index 006485deacc8035c556ed07f620a96b0a43caf1a..fc01f05baec764f768616ad6eb25c65b9dd58357 100644
--- a/webrtc/examples/BUILD.gn
+++ b/webrtc/examples/BUILD.gn
@@ -162,14 +162,16 @@ if (is_ios || (is_mac && target_cpu != "x86")) {
]
public_configs = [ ":apprtc_common_config" ]
- deps = [
- "../system_wrappers:field_trial_default",
- "../system_wrappers:metrics_default",
- ]
if (is_ios) {
- deps += [ ":AppRTCMobile_ios_frameworks" ]
+ deps = [
+ ":AppRTCMobile_ios_frameworks",
+ ]
} else {
- deps += [ "../sdk:objc_common" ]
+ deps = [
+ "../sdk:objc_common",
+ "../system_wrappers:field_trial_default",
+ "../system_wrappers:metrics_default",
+ ]
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698