| 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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
| 10 | 10 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 167 |
| 168 "AudioToolbox.framework", | 168 "AudioToolbox.framework", |
| 169 "CoreAudio.framework", | 169 "CoreAudio.framework", |
| 170 | 170 |
| 171 # Needed for CGEventSourceKeyState in audio_device_mac.cc: | 171 # Needed for CGEventSourceKeyState in audio_device_mac.cc: |
| 172 "CoreGraphics.framework", | 172 "CoreGraphics.framework", |
| 173 ] | 173 ] |
| 174 } | 174 } |
| 175 if (is_ios) { | 175 if (is_ios) { |
| 176 public_deps = [ | 176 public_deps = [ |
| 177 "../../base:gtest_prod", |
| 177 "../../base:rtc_base", | 178 "../../base:rtc_base", |
| 178 "../../sdk:rtc_sdk_common_objc", | 179 "../../sdk:rtc_sdk_common_objc", |
| 179 ] | 180 ] |
| 180 sources += [ | 181 sources += [ |
| 181 "ios/audio_device_ios.h", | 182 "ios/audio_device_ios.h", |
| 182 "ios/audio_device_ios.mm", | 183 "ios/audio_device_ios.mm", |
| 183 "ios/audio_device_not_implemented_ios.mm", | 184 "ios/audio_device_not_implemented_ios.mm", |
| 184 "ios/audio_session_observer.h", | 185 "ios/audio_session_observer.h", |
| 185 "ios/objc/RTCAudioSession+Configuration.mm", | 186 "ios/objc/RTCAudioSession+Configuration.mm", |
| 186 "ios/objc/RTCAudioSession+Private.h", | 187 "ios/objc/RTCAudioSession+Private.h", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 "android/ensure_initialized.h", | 292 "android/ensure_initialized.h", |
| 292 ] | 293 ] |
| 293 deps += [ | 294 deps += [ |
| 294 "../../../base", | 295 "../../../base", |
| 295 "//webrtc/sdk/android:libjingle_peerconnection_java", | 296 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 296 ] | 297 ] |
| 297 } | 298 } |
| 298 if (is_ios) { | 299 if (is_ios) { |
| 299 sources += [ "ios/objc/RTCAudioSessionTest.mm" ] | 300 sources += [ "ios/objc/RTCAudioSessionTest.mm" ] |
| 300 if (target_cpu != "x64") { | 301 if (target_cpu != "x64") { |
| 301 sources += [ "ios/audio_device_unittest_ios.cc" ] | 302 sources += [ "ios/audio_device_unittest_ios.mm" ] |
| 302 } | 303 } |
| 303 deps += [ "//third_party/ocmock" ] | 304 deps += [ "//third_party/ocmock" ] |
| 304 } | 305 } |
| 305 if (!build_with_chromium && is_clang) { | 306 if (!build_with_chromium && is_clang) { |
| 306 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 307 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 307 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 308 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 308 } | 309 } |
| 309 } | 310 } |
| 310 | 311 |
| 311 rtc_source_set("mock_audio_device") { | 312 rtc_source_set("mock_audio_device") { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", | 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", |
| 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", | 356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", |
| 356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", | 357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", |
| 357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 358 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
| 358 ] | 359 ] |
| 359 deps = [ | 360 deps = [ |
| 360 "//webrtc/base:base_java", | 361 "//webrtc/base:base_java", |
| 361 ] | 362 ] |
| 362 } | 363 } |
| 363 } | 364 } |
| OLD | NEW |