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

Side by Side Diff: webrtc/rtc_tools/network_tester/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 unified diff | Download patch
« no previous file with comments | « webrtc/rtc_tools/BUILD.gn ('k') | webrtc/sdk/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../../webrtc.gni") 9 import("../../webrtc.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 ] 111 ]
112 112
113 deps = [ 113 deps = [
114 ":network_tester", 114 ":network_tester",
115 ] 115 ]
116 116
117 if (!build_with_chromium && is_clang) { 117 if (!build_with_chromium && is_clang) {
118 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 118 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
119 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 119 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
120 } 120 }
121
122 if (is_ios || is_mac) {
123 deps += [ "../../rtc_base:rtc_base_apple" ]
124 }
121 } 125 }
122 } 126 }
123 127
124 if (is_android) { 128 if (is_android) {
125 android_apk("NetworkTesterMobile") { 129 android_apk("NetworkTesterMobile") {
126 testonly = true 130 testonly = true
127 apk_name = "NetworkTesterMobile" 131 apk_name = "NetworkTesterMobile"
128 android_manifest = "androidapp/AndroidManifest.xml" 132 android_manifest = "androidapp/AndroidManifest.xml"
129 133
130 deps = [ 134 deps = [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 ":network_tester", 171 ":network_tester",
168 "../../system_wrappers:field_trial_default", 172 "../../system_wrappers:field_trial_default",
169 ] 173 ]
170 174
171 suppressed_configs += [ "//build/config/android:hide_all_but_jni_onload" ] 175 suppressed_configs += [ "//build/config/android:hide_all_but_jni_onload" ]
172 configs += [ "//build/config/android:hide_all_but_jni" ] 176 configs += [ "//build/config/android:hide_all_but_jni" ]
173 177
174 output_extension = "so" 178 output_extension = "so"
175 } 179 }
176 } 180 }
OLDNEW
« no previous file with comments | « webrtc/rtc_tools/BUILD.gn ('k') | webrtc/sdk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698