OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 | 10 |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 "ios/audio_device_not_implemented_ios.mm", | 137 "ios/audio_device_not_implemented_ios.mm", |
138 "ios/audio_session_observer.h", | 138 "ios/audio_session_observer.h", |
139 "ios/objc/RTCAudioSession+Configuration.mm", | 139 "ios/objc/RTCAudioSession+Configuration.mm", |
140 "ios/objc/RTCAudioSession+Private.h", | 140 "ios/objc/RTCAudioSession+Private.h", |
141 "ios/objc/RTCAudioSession.h", | 141 "ios/objc/RTCAudioSession.h", |
142 "ios/objc/RTCAudioSession.mm", | 142 "ios/objc/RTCAudioSession.mm", |
143 "ios/objc/RTCAudioSessionConfiguration.h", | 143 "ios/objc/RTCAudioSessionConfiguration.h", |
144 "ios/objc/RTCAudioSessionConfiguration.m", | 144 "ios/objc/RTCAudioSessionConfiguration.m", |
145 "ios/objc/RTCAudioSessionDelegateAdapter.h", | 145 "ios/objc/RTCAudioSessionDelegateAdapter.h", |
146 "ios/objc/RTCAudioSessionDelegateAdapter.mm", | 146 "ios/objc/RTCAudioSessionDelegateAdapter.mm", |
| 147 "ios/voice_processing_audio_unit.h", |
| 148 "ios/voice_processing_audio_unit.mm", |
147 ] | 149 ] |
148 cflags += [ "-fobjc-arc" ] # CLANG_ENABLE_OBJC_ARC = YES. | 150 cflags += [ "-fobjc-arc" ] # CLANG_ENABLE_OBJC_ARC = YES. |
149 libs = [ | 151 libs = [ |
150 "AudioToolbox.framework", | 152 "AudioToolbox.framework", |
151 "AVFoundation.framework", | 153 "AVFoundation.framework", |
152 "Foundation.framework", | 154 "Foundation.framework", |
153 "UIKit.framework", | 155 "UIKit.framework", |
154 ] | 156 ] |
155 } | 157 } |
156 if (is_win) { | 158 if (is_win) { |
(...skipping 30 matching lines...) Expand all Loading... |
187 "../..:common_inherited_config", | 189 "../..:common_inherited_config", |
188 ":audio_device_config", | 190 ":audio_device_config", |
189 ] | 191 ] |
190 | 192 |
191 if (is_clang) { | 193 if (is_clang) { |
192 # Suppress warnings from Chrome's Clang plugins. | 194 # Suppress warnings from Chrome's Clang plugins. |
193 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 195 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
194 configs -= [ "//build/config/clang:find_bad_constructs" ] | 196 configs -= [ "//build/config/clang:find_bad_constructs" ] |
195 } | 197 } |
196 } | 198 } |
OLD | NEW |