OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 { | 9 { |
10 'targets': [ | 10 'targets': [ |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 }, | 166 }, |
167 }], | 167 }], |
168 ['OS=="ios"', { | 168 ['OS=="ios"', { |
169 'dependencies': [ | 169 'dependencies': [ |
170 '<(webrtc_root)/base/base.gyp:rtc_base_objc', | 170 '<(webrtc_root)/base/base.gyp:rtc_base_objc', |
171 ], | 171 ], |
172 'sources': [ | 172 'sources': [ |
173 'ios/audio_device_ios.h', | 173 'ios/audio_device_ios.h', |
174 'ios/audio_device_ios.mm', | 174 'ios/audio_device_ios.mm', |
175 'ios/audio_device_not_implemented_ios.mm', | 175 'ios/audio_device_not_implemented_ios.mm', |
| 176 'ios/objc/RTCAudioSession+Configuration.mm', |
176 'ios/objc/RTCAudioSession+Private.h', | 177 'ios/objc/RTCAudioSession+Private.h', |
177 'ios/objc/RTCAudioSession.h', | 178 'ios/objc/RTCAudioSession.h', |
178 'ios/objc/RTCAudioSession.mm', | 179 'ios/objc/RTCAudioSession.mm', |
| 180 'ios/objc/RTCAudioSessionConfiguration.h', |
| 181 'ios/objc/RTCAudioSessionConfiguration.m', |
179 ], | 182 ], |
180 'xcode_settings': { | 183 'xcode_settings': { |
181 'CLANG_ENABLE_OBJC_ARC': 'YES', | 184 'CLANG_ENABLE_OBJC_ARC': 'YES', |
182 }, | 185 }, |
183 'link_settings': { | 186 'link_settings': { |
184 'xcode_settings': { | 187 'xcode_settings': { |
185 'OTHER_LDFLAGS': [ | 188 'OTHER_LDFLAGS': [ |
186 '-framework AudioToolbox', | 189 '-framework AudioToolbox', |
187 '-framework AVFoundation', | 190 '-framework AVFoundation', |
188 '-framework Foundation', | 191 '-framework Foundation', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 'test/audio_device_test_defines.h', | 274 'test/audio_device_test_defines.h', |
272 'test/func_test_manager.cc', | 275 'test/func_test_manager.cc', |
273 'test/func_test_manager.h', | 276 'test/func_test_manager.h', |
274 ], | 277 ], |
275 }, | 278 }, |
276 ], # targets | 279 ], # targets |
277 }], # include_tests==1 and OS!=ios | 280 }], # include_tests==1 and OS!=ios |
278 ], | 281 ], |
279 } | 282 } |
280 | 283 |
OLD | NEW |