| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "-Wno-thread-safety-analysis", | 42 "-Wno-thread-safety-analysis", |
| 43 "-Wno-unused-private-field", | 43 "-Wno-unused-private-field", |
| 44 ] | 44 ] |
| 45 } | 45 } |
| 46 } | 46 } |
| 47 | 47 |
| 48 rtc_static_library("audio_device") { | 48 rtc_static_library("audio_device") { |
| 49 public_configs = [ ":audio_device_config" ] | 49 public_configs = [ ":audio_device_config" ] |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 "..:module_api", |
| 52 "../..:webrtc_common", | 53 "../..:webrtc_common", |
| 53 "../../base:rtc_base_approved", | 54 "../../base:rtc_base_approved", |
| 54 "../../base:rtc_task_queue", | 55 "../../base:rtc_task_queue", |
| 55 "../../common_audio", | 56 "../../common_audio", |
| 56 "../../system_wrappers", | 57 "../../system_wrappers", |
| 57 "../utility", | 58 "../utility", |
| 58 ] | 59 ] |
| 59 | 60 |
| 60 sources = [ | 61 sources = [ |
| 61 "audio_device_buffer.cc", | 62 "audio_device_buffer.cc", |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", | 354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", |
| 354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", | 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", |
| 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", | 356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", |
| 356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
| 357 ] | 358 ] |
| 358 deps = [ | 359 deps = [ |
| 359 "//webrtc/base:base_java", | 360 "//webrtc/base:base_java", |
| 360 ] | 361 ] |
| 361 } | 362 } |
| 362 } | 363 } |
| OLD | NEW |