| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "audio_output_proxy.h", | 77 "audio_output_proxy.h", |
| 78 "audio_output_resampler.cc", | 78 "audio_output_resampler.cc", |
| 79 "audio_output_resampler.h", | 79 "audio_output_resampler.h", |
| 80 "audio_output_stream_sink.cc", | 80 "audio_output_stream_sink.cc", |
| 81 "audio_output_stream_sink.h", | 81 "audio_output_stream_sink.h", |
| 82 "audio_power_monitor.cc", | 82 "audio_power_monitor.cc", |
| 83 "audio_power_monitor.h", | 83 "audio_power_monitor.h", |
| 84 "audio_source_diverter.h", | 84 "audio_source_diverter.h", |
| 85 "clockless_audio_sink.cc", | 85 "clockless_audio_sink.cc", |
| 86 "clockless_audio_sink.h", | 86 "clockless_audio_sink.h", |
| 87 "fake_audio_consumer.cc", | |
| 88 "fake_audio_consumer.h", | |
| 89 "fake_audio_input_stream.cc", | 87 "fake_audio_input_stream.cc", |
| 90 "fake_audio_input_stream.h", | 88 "fake_audio_input_stream.h", |
| 91 "fake_audio_log_factory.cc", | 89 "fake_audio_log_factory.cc", |
| 92 "fake_audio_log_factory.h", | 90 "fake_audio_log_factory.h", |
| 93 "fake_audio_manager.cc", | 91 "fake_audio_manager.cc", |
| 94 "fake_audio_manager.h", | 92 "fake_audio_manager.h", |
| 95 "fake_audio_output_stream.cc", | 93 "fake_audio_output_stream.cc", |
| 96 "fake_audio_output_stream.h", | 94 "fake_audio_output_stream.h", |
| 95 "fake_audio_worker.cc", |
| 96 "fake_audio_worker.h", |
| 97 "null_audio_sink.cc", | 97 "null_audio_sink.cc", |
| 98 "null_audio_sink.h", | 98 "null_audio_sink.h", |
| 99 "sample_rates.cc", | 99 "sample_rates.cc", |
| 100 "sample_rates.h", | 100 "sample_rates.h", |
| 101 "scoped_task_runner_observer.cc", | 101 "scoped_task_runner_observer.cc", |
| 102 "scoped_task_runner_observer.h", | 102 "scoped_task_runner_observer.h", |
| 103 "simple_sources.cc", | 103 "simple_sources.cc", |
| 104 "simple_sources.h", | 104 "simple_sources.h", |
| 105 "sounds/audio_stream_handler.cc", | 105 "sounds/audio_stream_handler.cc", |
| 106 "sounds/audio_stream_handler.h", | 106 "sounds/audio_stream_handler.h", |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 testonly = true | 269 testonly = true |
| 270 sources = [ | 270 sources = [ |
| 271 "audio_input_controller_unittest.cc", | 271 "audio_input_controller_unittest.cc", |
| 272 "audio_input_unittest.cc", | 272 "audio_input_unittest.cc", |
| 273 "audio_manager_unittest.cc", | 273 "audio_manager_unittest.cc", |
| 274 "audio_output_controller_unittest.cc", | 274 "audio_output_controller_unittest.cc", |
| 275 "audio_output_device_unittest.cc", | 275 "audio_output_device_unittest.cc", |
| 276 "audio_output_proxy_unittest.cc", | 276 "audio_output_proxy_unittest.cc", |
| 277 "audio_parameters_unittest.cc", | 277 "audio_parameters_unittest.cc", |
| 278 "audio_power_monitor_unittest.cc", | 278 "audio_power_monitor_unittest.cc", |
| 279 "fake_audio_consumer_unittest.cc", | 279 "fake_audio_worker_unittest.cc", |
| 280 "simple_sources_unittest.cc", | 280 "simple_sources_unittest.cc", |
| 281 "virtual_audio_input_stream_unittest.cc", | 281 "virtual_audio_input_stream_unittest.cc", |
| 282 "virtual_audio_output_stream_unittest.cc", | 282 "virtual_audio_output_stream_unittest.cc", |
| 283 ] | 283 ] |
| 284 deps = [ | 284 deps = [ |
| 285 ":test_support", | 285 ":test_support", |
| 286 "//testing/gmock", | 286 "//testing/gmock", |
| 287 "//testing/gtest", | 287 "//testing/gtest", |
| 288 ] | 288 ] |
| 289 | 289 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 ] | 333 ] |
| 334 } | 334 } |
| 335 | 335 |
| 336 if (use_alsa) { | 336 if (use_alsa) { |
| 337 sources += [ | 337 sources += [ |
| 338 "alsa/alsa_output_unittest.cc", | 338 "alsa/alsa_output_unittest.cc", |
| 339 "audio_low_latency_input_output_unittest.cc", | 339 "audio_low_latency_input_output_unittest.cc", |
| 340 ] | 340 ] |
| 341 } | 341 } |
| 342 } | 342 } |
| OLD | NEW |