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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 "linux/alsasymboltable_linux.cc", | 130 "linux/alsasymboltable_linux.cc", |
131 "linux/alsasymboltable_linux.h", | 131 "linux/alsasymboltable_linux.h", |
132 "linux/audio_device_alsa_linux.cc", | 132 "linux/audio_device_alsa_linux.cc", |
133 "linux/audio_device_alsa_linux.h", | 133 "linux/audio_device_alsa_linux.h", |
134 "linux/audio_mixer_manager_alsa_linux.cc", | 134 "linux/audio_mixer_manager_alsa_linux.cc", |
135 "linux/audio_mixer_manager_alsa_linux.h", | 135 "linux/audio_mixer_manager_alsa_linux.h", |
136 "linux/latebindingsymboltable_linux.cc", | 136 "linux/latebindingsymboltable_linux.cc", |
137 "linux/latebindingsymboltable_linux.h", | 137 "linux/latebindingsymboltable_linux.h", |
138 ] | 138 ] |
139 defines += [ "LINUX_ALSA" ] | 139 defines += [ "LINUX_ALSA" ] |
140 libs = [ | 140 libs = [ "dl" ] |
141 "dl", | 141 if (use_x11) { |
142 "X11", | 142 libs += [ "X11" ] |
143 ] | 143 } |
144 if (rtc_include_pulse_audio) { | 144 if (rtc_include_pulse_audio) { |
145 sources += [ | 145 sources += [ |
146 "linux/audio_device_pulse_linux.cc", | 146 "linux/audio_device_pulse_linux.cc", |
147 "linux/audio_device_pulse_linux.h", | 147 "linux/audio_device_pulse_linux.h", |
148 "linux/audio_mixer_manager_pulse_linux.cc", | 148 "linux/audio_mixer_manager_pulse_linux.cc", |
149 "linux/audio_mixer_manager_pulse_linux.h", | 149 "linux/audio_mixer_manager_pulse_linux.h", |
150 "linux/pulseaudiosymboltable_linux.cc", | 150 "linux/pulseaudiosymboltable_linux.cc", |
151 "linux/pulseaudiosymboltable_linux.h", | 151 "linux/pulseaudiosymboltable_linux.h", |
152 ] | 152 ] |
153 defines += [ "LINUX_PULSE" ] | 153 defines += [ "LINUX_PULSE" ] |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", | 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", |
356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", | 356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", |
357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", | 357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", |
358 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 358 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
359 ] | 359 ] |
360 deps = [ | 360 deps = [ |
361 "//webrtc/base:base_java", | 361 "//webrtc/base:base_java", |
362 ] | 362 ] |
363 } | 363 } |
364 } | 364 } |
OLD | NEW |