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

Side by Side Diff: webrtc/modules/audio_device/audio_device.gypi

Issue 1709853002: Add RTCAudioSession proxy class. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 'mac/portaudio/pa_ringbuffer.h', 159 'mac/portaudio/pa_ringbuffer.h',
160 ], 160 ],
161 'link_settings': { 161 'link_settings': {
162 'libraries': [ 162 'libraries': [
163 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 163 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
164 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 164 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
165 ], 165 ],
166 }, 166 },
167 }], 167 }],
168 ['OS=="ios"', { 168 ['OS=="ios"', {
169 'dependencies': [
170 '<(webrtc_root)/base/base.gyp:rtc_base_objc',
171 ],
169 'sources': [ 172 'sources': [
170 'ios/audio_device_ios.h', 173 'ios/audio_device_ios.h',
171 'ios/audio_device_ios.mm', 174 'ios/audio_device_ios.mm',
172 'ios/audio_device_not_implemented_ios.mm', 175 'ios/audio_device_not_implemented_ios.mm',
176 'ios/objc/RTCAudioSession+Private.h',
177 'ios/objc/RTCAudioSession.h',
178 'ios/objc/RTCAudioSession.mm',
173 ], 179 ],
174 'xcode_settings': { 180 'xcode_settings': {
175 'CLANG_ENABLE_OBJC_ARC': 'YES', 181 'CLANG_ENABLE_OBJC_ARC': 'YES',
176 }, 182 },
177 'link_settings': { 183 'link_settings': {
178 'xcode_settings': { 184 'xcode_settings': {
179 'OTHER_LDFLAGS': [ 185 'OTHER_LDFLAGS': [
180 '-framework AudioToolbox', 186 '-framework AudioToolbox',
181 '-framework AVFoundation', 187 '-framework AVFoundation',
182 '-framework Foundation', 188 '-framework Foundation',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 'test/audio_device_test_defines.h', 271 'test/audio_device_test_defines.h',
266 'test/func_test_manager.cc', 272 'test/func_test_manager.cc',
267 'test/func_test_manager.h', 273 'test/func_test_manager.h',
268 ], 274 ],
269 }, 275 },
270 ], # targets 276 ], # targets
271 }], # include_tests==1 and OS!=ios 277 }], # include_tests==1 and OS!=ios
272 ], 278 ],
273 } 279 }
274 280
OLDNEW
« no previous file with comments | « webrtc/modules/audio_device/BUILD.gn ('k') | webrtc/modules/audio_device/ios/audio_device_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698