| 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.h", | 89 "fake_audio_log_factory.h", |
| 92 "fake_audio_log_factory.cc", | 90 "fake_audio_log_factory.cc", |
| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 testonly = true | 267 testonly = true |
| 268 sources = [ | 268 sources = [ |
| 269 "audio_input_controller_unittest.cc", | 269 "audio_input_controller_unittest.cc", |
| 270 "audio_input_unittest.cc", | 270 "audio_input_unittest.cc", |
| 271 "audio_manager_unittest.cc", | 271 "audio_manager_unittest.cc", |
| 272 "audio_output_controller_unittest.cc", | 272 "audio_output_controller_unittest.cc", |
| 273 "audio_output_device_unittest.cc", | 273 "audio_output_device_unittest.cc", |
| 274 "audio_output_proxy_unittest.cc", | 274 "audio_output_proxy_unittest.cc", |
| 275 "audio_parameters_unittest.cc", | 275 "audio_parameters_unittest.cc", |
| 276 "audio_power_monitor_unittest.cc", | 276 "audio_power_monitor_unittest.cc", |
| 277 "fake_audio_consumer_unittest.cc", | 277 "fake_audio_worker_unittest.cc", |
| 278 "simple_sources_unittest.cc", | 278 "simple_sources_unittest.cc", |
| 279 "virtual_audio_input_stream_unittest.cc", | 279 "virtual_audio_input_stream_unittest.cc", |
| 280 "virtual_audio_output_stream_unittest.cc", | 280 "virtual_audio_output_stream_unittest.cc", |
| 281 ] | 281 ] |
| 282 deps = [ | 282 deps = [ |
| 283 ":test_support", | 283 ":test_support", |
| 284 "//testing/gmock", | 284 "//testing/gmock", |
| 285 "//testing/gtest", | 285 "//testing/gtest", |
| 286 ] | 286 ] |
| 287 configs += [ "//media:media_config" ] | 287 configs += [ "//media:media_config" ] |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 ] | 327 ] |
| 328 } | 328 } |
| 329 | 329 |
| 330 if (use_alsa) { | 330 if (use_alsa) { |
| 331 sources += [ | 331 sources += [ |
| 332 "alsa/alsa_output_unittest.cc", | 332 "alsa/alsa_output_unittest.cc", |
| 333 "audio_low_latency_input_output_unittest.cc", | 333 "audio_low_latency_input_output_unittest.cc", |
| 334 ] | 334 ] |
| 335 } | 335 } |
| 336 } | 336 } |
| OLD | NEW |