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

Unified Diff: webrtc/rtc_tools/BUILD.gn

Issue 2976363002: Decoupling rtc_base from apple specific code [without cyclic deps] (Closed)
Patch Set: fixing network_tester_server Created 3 years, 5 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/rtc_base/BUILD.gn ('k') | webrtc/rtc_tools/network_tester/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/rtc_tools/BUILD.gn
diff --git a/webrtc/rtc_tools/BUILD.gn b/webrtc/rtc_tools/BUILD.gn
index fac42f389b48c89d6976572a0477878e75bcb8c1..bd94f93faff4e403b3c117f8de00b4c0a0d5799e 100644
--- a/webrtc/rtc_tools/BUILD.gn
+++ b/webrtc/rtc_tools/BUILD.gn
@@ -177,6 +177,9 @@ if (rtc_include_internal_audio_device) {
"../system_wrappers:system_wrappers_default",
"//build/win:default_exe_manifest",
]
+ if (is_ios) {
+ deps += [ "../rtc_base:rtc_base_apple" ]
+ }
}
}
@@ -249,6 +252,9 @@ if (rtc_include_tests) {
"../test:field_trial",
"../test:test_support",
]
+ if (is_ios) {
+ deps += [ "../rtc_base:rtc_base_apple" ]
+ }
}
}
@@ -272,6 +278,10 @@ if (rtc_include_tests) {
"//build/win:default_exe_manifest",
"//testing/gtest",
]
+
+ if (is_ios) {
+ deps += [ "../rtc_base:rtc_base_apple" ]
+ }
}
tools_unittests_resources = [
@@ -329,6 +339,9 @@ if (rtc_include_tests) {
if (is_ios) {
deps += [ ":tools_unittests_bundle_data" ]
}
+ if (is_ios || is_mac) {
+ deps += [ "../rtc_base:rtc_base_apple" ]
+ }
}
if (rtc_enable_protobuf) {
« no previous file with comments | « webrtc/rtc_base/BUILD.gn ('k') | webrtc/rtc_tools/network_tester/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698