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

Side by Side Diff: webrtc/modules/audio_device/BUILD.gn

Issue 2753453002: Adding AudioDeviceDataObserver interface (Closed)
Patch Set: Remove some unnecessary comments Created 3 years, 8 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) 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_impl.cc", 96 "audio_device_impl.cc",
97 "audio_device_impl.h", 97 "audio_device_impl.h",
98 "audio_transport_capture.cc",
99 "include/audio_transport_capture.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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698