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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 "AudioToolbox.framework", | 128 "AudioToolbox.framework", |
129 "CoreAudio.framework", | 129 "CoreAudio.framework", |
130 ] | 130 ] |
131 } | 131 } |
132 if (is_ios) { | 132 if (is_ios) { |
133 deps += [ "../../base:rtc_base_objc" ] | 133 deps += [ "../../base:rtc_base_objc" ] |
134 sources += [ | 134 sources += [ |
135 "ios/audio_device_ios.h", | 135 "ios/audio_device_ios.h", |
136 "ios/audio_device_ios.mm", | 136 "ios/audio_device_ios.mm", |
137 "ios/audio_device_not_implemented_ios.mm", | 137 "ios/audio_device_not_implemented_ios.mm", |
| 138 "ios/audio_session_observer.h", |
138 "ios/objc/RTCAudioSession+Configuration.mm", | 139 "ios/objc/RTCAudioSession+Configuration.mm", |
139 "ios/objc/RTCAudioSession+Private.h", | 140 "ios/objc/RTCAudioSession+Private.h", |
140 "ios/objc/RTCAudioSession.h", | 141 "ios/objc/RTCAudioSession.h", |
141 "ios/objc/RTCAudioSession.mm", | 142 "ios/objc/RTCAudioSession.mm", |
142 "ios/objc/RTCAudioSessionConfiguration.h", | 143 "ios/objc/RTCAudioSessionConfiguration.h", |
143 "ios/objc/RTCAudioSessionConfiguration.m", | 144 "ios/objc/RTCAudioSessionConfiguration.m", |
| 145 "ios/objc/RTCAudioSessionDelegateAdapter.h", |
| 146 "ios/objc/RTCAudioSessionDelegateAdapter.mm", |
144 ] | 147 ] |
145 cflags += [ "-fobjc-arc" ] # CLANG_ENABLE_OBJC_ARC = YES. | 148 cflags += [ "-fobjc-arc" ] # CLANG_ENABLE_OBJC_ARC = YES. |
146 libs = [ | 149 libs = [ |
147 "AudioToolbox.framework", | 150 "AudioToolbox.framework", |
148 "AVFoundation.framework", | 151 "AVFoundation.framework", |
149 "Foundation.framework", | 152 "Foundation.framework", |
150 "UIKit.framework", | 153 "UIKit.framework", |
151 ] | 154 ] |
152 } | 155 } |
153 if (is_win) { | 156 if (is_win) { |
(...skipping 30 matching lines...) Expand all Loading... |
184 "../..:common_inherited_config", | 187 "../..:common_inherited_config", |
185 ":audio_device_config", | 188 ":audio_device_config", |
186 ] | 189 ] |
187 | 190 |
188 if (is_clang) { | 191 if (is_clang) { |
189 # Suppress warnings from Chrome's Clang plugins. | 192 # Suppress warnings from Chrome's Clang plugins. |
190 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 193 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
191 configs -= [ "//build/config/clang:find_bad_constructs" ] | 194 configs -= [ "//build/config/clang:find_bad_constructs" ] |
192 } | 195 } |
193 } | 196 } |
OLD | NEW |