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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "audio_output_proxy.h", | 83 "audio_output_proxy.h", |
84 "audio_output_resampler.cc", | 84 "audio_output_resampler.cc", |
85 "audio_output_resampler.h", | 85 "audio_output_resampler.h", |
86 "audio_output_stream_sink.cc", | 86 "audio_output_stream_sink.cc", |
87 "audio_output_stream_sink.h", | 87 "audio_output_stream_sink.h", |
88 "audio_power_monitor.cc", | 88 "audio_power_monitor.cc", |
89 "audio_power_monitor.h", | 89 "audio_power_monitor.h", |
90 "audio_source_diverter.h", | 90 "audio_source_diverter.h", |
91 "audio_streams_tracker.cc", | 91 "audio_streams_tracker.cc", |
92 "audio_streams_tracker.h", | 92 "audio_streams_tracker.h", |
| 93 "audio_thread.cc", |
| 94 "audio_thread.h", |
93 "clockless_audio_sink.cc", | 95 "clockless_audio_sink.cc", |
94 "clockless_audio_sink.h", | 96 "clockless_audio_sink.h", |
95 "fake_audio_input_stream.cc", | 97 "fake_audio_input_stream.cc", |
96 "fake_audio_input_stream.h", | 98 "fake_audio_input_stream.h", |
97 "fake_audio_log_factory.cc", | 99 "fake_audio_log_factory.cc", |
98 "fake_audio_log_factory.h", | 100 "fake_audio_log_factory.h", |
99 "fake_audio_manager.cc", | 101 "fake_audio_manager.cc", |
100 "fake_audio_manager.h", | 102 "fake_audio_manager.h", |
101 "fake_audio_output_stream.cc", | 103 "fake_audio_output_stream.cc", |
102 "fake_audio_output_stream.h", | 104 "fake_audio_output_stream.h", |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 ] | 353 ] |
352 } | 354 } |
353 | 355 |
354 if (use_alsa) { | 356 if (use_alsa) { |
355 sources += [ | 357 sources += [ |
356 "alsa/alsa_output_unittest.cc", | 358 "alsa/alsa_output_unittest.cc", |
357 "audio_low_latency_input_output_unittest.cc", | 359 "audio_low_latency_input_output_unittest.cc", |
358 ] | 360 ] |
359 } | 361 } |
360 } | 362 } |
OLD | NEW |