| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "audio_output_ipc.h", | 86 "audio_output_ipc.h", |
| 87 "audio_output_proxy.cc", | 87 "audio_output_proxy.cc", |
| 88 "audio_output_proxy.h", | 88 "audio_output_proxy.h", |
| 89 "audio_output_resampler.cc", | 89 "audio_output_resampler.cc", |
| 90 "audio_output_resampler.h", | 90 "audio_output_resampler.h", |
| 91 "audio_output_stream_sink.cc", | 91 "audio_output_stream_sink.cc", |
| 92 "audio_output_stream_sink.h", | 92 "audio_output_stream_sink.h", |
| 93 "audio_power_monitor.cc", | 93 "audio_power_monitor.cc", |
| 94 "audio_power_monitor.h", | 94 "audio_power_monitor.h", |
| 95 "audio_source_diverter.h", | 95 "audio_source_diverter.h", |
| 96 "audio_system.cc", |
| 96 "audio_system.h", | 97 "audio_system.h", |
| 97 "audio_system_impl.cc", | 98 "audio_system_impl.cc", |
| 98 "audio_system_impl.h", | 99 "audio_system_impl.h", |
| 99 "clockless_audio_sink.cc", | 100 "clockless_audio_sink.cc", |
| 100 "clockless_audio_sink.h", | 101 "clockless_audio_sink.h", |
| 101 "fake_audio_input_stream.cc", | 102 "fake_audio_input_stream.cc", |
| 102 "fake_audio_input_stream.h", | 103 "fake_audio_input_stream.h", |
| 103 "fake_audio_log_factory.cc", | 104 "fake_audio_log_factory.cc", |
| 104 "fake_audio_log_factory.h", | 105 "fake_audio_log_factory.h", |
| 105 "fake_audio_manager.cc", | 106 "fake_audio_manager.cc", |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 ] | 377 ] |
| 377 } | 378 } |
| 378 | 379 |
| 379 if (use_alsa) { | 380 if (use_alsa) { |
| 380 sources += [ | 381 sources += [ |
| 381 "alsa/alsa_output_unittest.cc", | 382 "alsa/alsa_output_unittest.cc", |
| 382 "audio_low_latency_input_output_unittest.cc", | 383 "audio_low_latency_input_output_unittest.cc", |
| 383 ] | 384 ] |
| 384 } | 385 } |
| 385 } | 386 } |
| OLD | NEW |