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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 if (is_ios) { | 177 if (is_ios) { |
178 public_deps = [ | 178 public_deps = [ |
179 "../../base:rtc_base", | 179 "../../base:rtc_base", |
180 "../../sdk:rtc_sdk_common_objc", | 180 "../../sdk:rtc_sdk_common_objc", |
181 ] | 181 ] |
182 sources += [ | 182 sources += [ |
183 "ios/audio_device_ios.h", | 183 "ios/audio_device_ios.h", |
184 "ios/audio_device_ios.mm", | 184 "ios/audio_device_ios.mm", |
185 "ios/audio_device_not_implemented_ios.mm", | 185 "ios/audio_device_not_implemented_ios.mm", |
186 "ios/audio_session_observer.h", | 186 "ios/audio_session_observer.h", |
| 187 "ios/helpers_ios.h", |
| 188 "ios/helpers_ios.mm", |
187 "ios/objc/RTCAudioSession+Configuration.mm", | 189 "ios/objc/RTCAudioSession+Configuration.mm", |
188 "ios/objc/RTCAudioSession+Private.h", | 190 "ios/objc/RTCAudioSession+Private.h", |
189 "ios/objc/RTCAudioSession.h", | 191 "ios/objc/RTCAudioSession.h", |
190 "ios/objc/RTCAudioSession.mm", | 192 "ios/objc/RTCAudioSession.mm", |
191 "ios/objc/RTCAudioSessionConfiguration.h", | 193 "ios/objc/RTCAudioSessionConfiguration.h", |
192 "ios/objc/RTCAudioSessionConfiguration.m", | 194 "ios/objc/RTCAudioSessionConfiguration.m", |
193 "ios/objc/RTCAudioSessionDelegateAdapter.h", | 195 "ios/objc/RTCAudioSessionDelegateAdapter.h", |
194 "ios/objc/RTCAudioSessionDelegateAdapter.mm", | 196 "ios/objc/RTCAudioSessionDelegateAdapter.mm", |
195 "ios/voice_processing_audio_unit.h", | 197 "ios/voice_processing_audio_unit.h", |
196 "ios/voice_processing_audio_unit.mm", | 198 "ios/voice_processing_audio_unit.mm", |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 "../../system_wrappers", | 284 "../../system_wrappers", |
283 "../../test:test_support", | 285 "../../test:test_support", |
284 "../../test:test_support_main", | 286 "../../test:test_support_main", |
285 "../rtp_rtcp", | 287 "../rtp_rtcp", |
286 "../utility", | 288 "../utility", |
287 "//testing/gtest", | 289 "//testing/gtest", |
288 ] | 290 ] |
289 public_configs = [ ":audio_device_config" ] | 291 public_configs = [ ":audio_device_config" ] |
290 } | 292 } |
291 } | 293 } |
OLD | NEW |