| 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_streams_tracker.cc", | |
| 97 "audio_streams_tracker.h", | |
| 98 "audio_system.h", | 96 "audio_system.h", |
| 99 "audio_system_impl.cc", | 97 "audio_system_impl.cc", |
| 100 "audio_system_impl.h", | 98 "audio_system_impl.h", |
| 101 "clockless_audio_sink.cc", | 99 "clockless_audio_sink.cc", |
| 102 "clockless_audio_sink.h", | 100 "clockless_audio_sink.h", |
| 103 "fake_audio_input_stream.cc", | 101 "fake_audio_input_stream.cc", |
| 104 "fake_audio_input_stream.h", | 102 "fake_audio_input_stream.h", |
| 105 "fake_audio_log_factory.cc", | 103 "fake_audio_log_factory.cc", |
| 106 "fake_audio_log_factory.h", | 104 "fake_audio_log_factory.h", |
| 107 "fake_audio_manager.cc", | 105 "fake_audio_manager.cc", |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 testonly = true | 302 testonly = true |
| 305 sources = [ | 303 sources = [ |
| 306 "audio_input_controller_unittest.cc", | 304 "audio_input_controller_unittest.cc", |
| 307 "audio_input_device_unittest.cc", | 305 "audio_input_device_unittest.cc", |
| 308 "audio_input_unittest.cc", | 306 "audio_input_unittest.cc", |
| 309 "audio_manager_unittest.cc", | 307 "audio_manager_unittest.cc", |
| 310 "audio_output_controller_unittest.cc", | 308 "audio_output_controller_unittest.cc", |
| 311 "audio_output_device_unittest.cc", | 309 "audio_output_device_unittest.cc", |
| 312 "audio_output_proxy_unittest.cc", | 310 "audio_output_proxy_unittest.cc", |
| 313 "audio_power_monitor_unittest.cc", | 311 "audio_power_monitor_unittest.cc", |
| 314 "audio_streams_tracker_unittest.cc", | |
| 315 "audio_system_impl_unittest.cc", | 312 "audio_system_impl_unittest.cc", |
| 316 "fake_audio_worker_unittest.cc", | 313 "fake_audio_worker_unittest.cc", |
| 317 "simple_sources_unittest.cc", | 314 "simple_sources_unittest.cc", |
| 318 "virtual_audio_input_stream_unittest.cc", | 315 "virtual_audio_input_stream_unittest.cc", |
| 319 "virtual_audio_output_stream_unittest.cc", | 316 "virtual_audio_output_stream_unittest.cc", |
| 320 ] | 317 ] |
| 321 deps = [ | 318 deps = [ |
| 322 ":test_support", | 319 ":test_support", |
| 323 "//base", | 320 "//base", |
| 324 "//base/test:test_support", | 321 "//base/test:test_support", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 ] | 376 ] |
| 380 } | 377 } |
| 381 | 378 |
| 382 if (use_alsa) { | 379 if (use_alsa) { |
| 383 sources += [ | 380 sources += [ |
| 384 "alsa/alsa_output_unittest.cc", | 381 "alsa/alsa_output_unittest.cc", |
| 385 "audio_low_latency_input_output_unittest.cc", | 382 "audio_low_latency_input_output_unittest.cc", |
| 386 ] | 383 ] |
| 387 } | 384 } |
| 388 } | 385 } |
| OLD | NEW |