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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
6 | 6 |
7 # When libpulse is not directly linked, use stubs to allow for dlopening of the | 7 # When libpulse is not directly linked, use stubs to allow for dlopening of the |
8 # binary. | 8 # binary. |
9 if (!link_pulseaudio) { | 9 if (!link_pulseaudio) { |
10 action("pulse_generate_stubs") { | 10 action("pulse_generate_stubs") { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "audio_output_dispatcher.cc", | 58 "audio_output_dispatcher.cc", |
59 "audio_output_dispatcher.h", | 59 "audio_output_dispatcher.h", |
60 "audio_output_dispatcher_impl.cc", | 60 "audio_output_dispatcher_impl.cc", |
61 "audio_output_dispatcher_impl.h", | 61 "audio_output_dispatcher_impl.h", |
62 "audio_output_ipc.cc", | 62 "audio_output_ipc.cc", |
63 "audio_output_ipc.h", | 63 "audio_output_ipc.h", |
64 "audio_output_proxy.cc", | 64 "audio_output_proxy.cc", |
65 "audio_output_proxy.h", | 65 "audio_output_proxy.h", |
66 "audio_output_resampler.cc", | 66 "audio_output_resampler.cc", |
67 "audio_output_resampler.h", | 67 "audio_output_resampler.h", |
| 68 "audio_output_stream_sink.cc", |
| 69 "audio_output_stream_sink.h", |
68 "audio_power_monitor.cc", | 70 "audio_power_monitor.cc", |
69 "audio_power_monitor.h", | 71 "audio_power_monitor.h", |
70 "audio_source_diverter.h", | 72 "audio_source_diverter.h", |
71 "fake_audio_consumer.cc", | 73 "fake_audio_consumer.cc", |
72 "fake_audio_consumer.h", | 74 "fake_audio_consumer.h", |
73 "fake_audio_input_stream.cc", | 75 "fake_audio_input_stream.cc", |
74 "fake_audio_input_stream.h", | 76 "fake_audio_input_stream.h", |
75 "fake_audio_log_factory.h", | 77 "fake_audio_log_factory.h", |
76 "fake_audio_log_factory.cc", | 78 "fake_audio_log_factory.cc", |
77 "fake_audio_manager.cc", | 79 "fake_audio_manager.cc", |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 "win/core_audio_util_win_unittest.cc", | 319 "win/core_audio_util_win_unittest.cc", |
318 ] | 320 ] |
319 } | 321 } |
320 | 322 |
321 if (use_alsa) { | 323 if (use_alsa) { |
322 sources += [ | 324 sources += [ |
323 "alsa/alsa_output_unittest.cc", | 325 "alsa/alsa_output_unittest.cc", |
324 ] | 326 ] |
325 } | 327 } |
326 } | 328 } |
OLD | NEW |