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

Side by Side Diff: webrtc/audio/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/BUILD.gn ('k') | webrtc/common_audio/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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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 if (is_android) { 10 if (is_android) {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 data = [ 124 data = [
125 "../../resources/voice_engine/audio_tiny16.wav", 125 "../../resources/voice_engine/audio_tiny16.wav",
126 "../../resources/voice_engine/audio_tiny48.wav", 126 "../../resources/voice_engine/audio_tiny48.wav",
127 "../../resources/voice_engine/audio_dtx16.wav", 127 "../../resources/voice_engine/audio_dtx16.wav",
128 ] 128 ]
129 129
130 if (!build_with_chromium && is_clang) { 130 if (!build_with_chromium && is_clang) {
131 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) 131 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
132 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 132 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
133 } 133 }
134 if (is_ios) {
135 deps += [ "../rtc_base:rtc_base_apple" ]
136 }
134 } 137 }
135 } 138 }
136 139
137 rtc_source_set("audio_perf_tests") { 140 rtc_source_set("audio_perf_tests") {
138 testonly = true 141 testonly = true
139 142
140 # Skip restricting visibility on mobile platforms since the tests on those 143 # Skip restricting visibility on mobile platforms since the tests on those
141 # gets additional generated targets which would require many lines here to 144 # gets additional generated targets which would require many lines here to
142 # cover (which would be confusing to read and hard to maintain). 145 # cover (which would be confusing to read and hard to maintain).
143 if (!is_android && !is_ios) { 146 if (!is_android && !is_ios) {
(...skipping 19 matching lines...) Expand all
163 data = [ 166 data = [
164 "//resources/voice_engine/audio_dtx16.wav", 167 "//resources/voice_engine/audio_dtx16.wav",
165 ] 168 ]
166 169
167 if (!build_with_chromium && is_clang) { 170 if (!build_with_chromium && is_clang) {
168 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 171 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
169 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 172 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
170 } 173 }
171 } 174 }
172 } 175 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/common_audio/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698