| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 if (is_win) { | 86 if (is_win) { |
| 87 include_dirs += [ "win" ] | 87 include_dirs += [ "win" ] |
| 88 } | 88 } |
| 89 if (is_android) { | 89 if (is_android) { |
| 90 include_dirs += [ "android" ] | 90 include_dirs += [ "android" ] |
| 91 } | 91 } |
| 92 defines = [] | 92 defines = [] |
| 93 cflags = [] | 93 cflags = [] |
| 94 if (rtc_include_internal_audio_device) { | 94 if (rtc_include_internal_audio_device) { |
| 95 sources += [ | 95 sources += [ |
| 96 "audio_device_data_observer.cc", |
| 96 "audio_device_impl.cc", | 97 "audio_device_impl.cc", |
| 97 "audio_device_impl.h", | 98 "audio_device_impl.h", |
| 99 "include/audio_device_data_observer.h", |
| 98 ] | 100 ] |
| 99 if (is_android) { | 101 if (is_android) { |
| 100 sources += [ | 102 sources += [ |
| 101 "android/audio_device_template.h", | 103 "android/audio_device_template.h", |
| 102 "android/audio_manager.cc", | 104 "android/audio_manager.cc", |
| 103 "android/audio_manager.h", | 105 "android/audio_manager.h", |
| 104 "android/audio_record_jni.cc", | 106 "android/audio_record_jni.cc", |
| 105 "android/audio_record_jni.h", | 107 "android/audio_record_jni.h", |
| 106 "android/audio_track_jni.cc", | 108 "android/audio_track_jni.cc", |
| 107 "android/audio_track_jni.h", | 109 "android/audio_track_jni.h", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", | 348 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", |
| 347 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", | 349 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", |
| 348 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", | 350 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", |
| 349 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 351 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
| 350 ] | 352 ] |
| 351 deps = [ | 353 deps = [ |
| 352 "//webrtc/base:base_java", | 354 "//webrtc/base:base_java", |
| 353 ] | 355 ] |
| 354 } | 356 } |
| 355 } | 357 } |
| OLD | NEW |