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

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

Issue 2753453002: Adding AudioDeviceDataObserver interface (Closed)
Patch Set: Fix gn typo Created 3 years, 9 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 } 96 }
97 if (is_android) { 97 if (is_android) {
98 include_dirs += [ "android" ] 98 include_dirs += [ "android" ]
99 } 99 }
100 defines = [] 100 defines = []
101 cflags = [] 101 cflags = []
102 if (rtc_include_internal_audio_device) { 102 if (rtc_include_internal_audio_device) {
103 sources += [ 103 sources += [
104 "audio_device_impl.cc", 104 "audio_device_impl.cc",
105 "audio_device_impl.h", 105 "audio_device_impl.h",
106 "audio_transport_capture.cc",
107 "include/audio_transport_capture.h",
106 ] 108 ]
107 if (is_android) { 109 if (is_android) {
108 sources += [ 110 sources += [
109 "android/audio_device_template.h", 111 "android/audio_device_template.h",
110 "android/audio_manager.cc", 112 "android/audio_manager.cc",
111 "android/audio_manager.h", 113 "android/audio_manager.h",
112 "android/audio_record_jni.cc", 114 "android/audio_record_jni.cc",
113 "android/audio_record_jni.h", 115 "android/audio_record_jni.h",
114 "android/audio_track_jni.cc", 116 "android/audio_track_jni.cc",
115 "android/audio_track_jni.h", 117 "android/audio_track_jni.h",
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", 352 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java",
351 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", 353 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java",
352 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", 354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java",
353 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java",
354 ] 356 ]
355 deps = [ 357 deps = [
356 "//webrtc/base:base_java", 358 "//webrtc/base:base_java",
357 ] 359 ]
358 } 360 }
359 } 361 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698