OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
7 | 7 |
8 # When libpulse is not directly linked, use stubs to allow for dlopening of the | 8 # When libpulse is not directly linked, use stubs to allow for dlopening of the |
9 # binary. | 9 # binary. |
10 if (!link_pulseaudio) { | 10 if (!link_pulseaudio) { |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 "winmm.lib", | 188 "winmm.lib", |
189 ] | 189 ] |
190 } | 190 } |
191 | 191 |
192 if (is_android) { | 192 if (is_android) { |
193 sources += [ | 193 sources += [ |
194 "android/audio_manager_android.cc", | 194 "android/audio_manager_android.cc", |
195 "android/audio_manager_android.h", | 195 "android/audio_manager_android.h", |
196 "android/audio_record_input.cc", | 196 "android/audio_record_input.cc", |
197 "android/audio_record_input.h", | 197 "android/audio_record_input.h", |
| 198 "android/audio_track_output_stream.cc", |
| 199 "android/audio_track_output_stream.h", |
| 200 "android/muteable_audio_output_stream.h", |
198 "android/opensles_input.cc", | 201 "android/opensles_input.cc", |
199 "android/opensles_input.h", | 202 "android/opensles_input.h", |
200 "android/opensles_output.cc", | 203 "android/opensles_output.cc", |
201 "android/opensles_output.h", | 204 "android/opensles_output.h", |
202 "android/opensles_util.cc", | 205 "android/opensles_util.cc", |
203 "android/opensles_util.h", | 206 "android/opensles_util.h", |
204 "android/opensles_wrapper.cc", | 207 "android/opensles_wrapper.cc", |
205 ] | 208 ] |
206 deps += [ "//media/base/android:media_jni_headers" ] | 209 deps += [ "//media/base/android:media_jni_headers" ] |
207 } | 210 } |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 ] | 378 ] |
376 } | 379 } |
377 | 380 |
378 if (use_alsa) { | 381 if (use_alsa) { |
379 sources += [ | 382 sources += [ |
380 "alsa/alsa_output_unittest.cc", | 383 "alsa/alsa_output_unittest.cc", |
381 "audio_low_latency_input_output_unittest.cc", | 384 "audio_low_latency_input_output_unittest.cc", |
382 ] | 385 ] |
383 } | 386 } |
384 } | 387 } |
OLD | NEW |