| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "audio_output_ipc.h", | 75 "audio_output_ipc.h", |
| 76 "audio_output_proxy.cc", | 76 "audio_output_proxy.cc", |
| 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", |
| 86 "clockless_audio_sink.h", |
| 85 "fake_audio_consumer.cc", | 87 "fake_audio_consumer.cc", |
| 86 "fake_audio_consumer.h", | 88 "fake_audio_consumer.h", |
| 87 "fake_audio_input_stream.cc", | 89 "fake_audio_input_stream.cc", |
| 88 "fake_audio_input_stream.h", | 90 "fake_audio_input_stream.h", |
| 89 "fake_audio_log_factory.h", | 91 "fake_audio_log_factory.h", |
| 90 "fake_audio_log_factory.cc", | 92 "fake_audio_log_factory.cc", |
| 91 "fake_audio_manager.cc", | 93 "fake_audio_manager.cc", |
| 92 "fake_audio_manager.h", | 94 "fake_audio_manager.h", |
| 93 "fake_audio_output_stream.cc", | 95 "fake_audio_output_stream.cc", |
| 94 "fake_audio_output_stream.h", | 96 "fake_audio_output_stream.h", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 libs += [ "dl" ] | 241 libs += [ "dl" ] |
| 240 deps += [ ":pulse_generate_stubs" ] | 242 deps += [ ":pulse_generate_stubs" ] |
| 241 sources += get_target_outputs(":pulse_generate_stubs") | 243 sources += get_target_outputs(":pulse_generate_stubs") |
| 242 } | 244 } |
| 243 } | 245 } |
| 244 } | 246 } |
| 245 | 247 |
| 246 source_set("test_support") { | 248 source_set("test_support") { |
| 247 testonly = true | 249 testonly = true |
| 248 sources = [ | 250 sources = [ |
| 249 "clockless_audio_sink.cc", | |
| 250 "clockless_audio_sink.h", | |
| 251 "mock_audio_manager.cc", | 251 "mock_audio_manager.cc", |
| 252 "mock_audio_manager.h", | 252 "mock_audio_manager.h", |
| 253 "mock_audio_source_callback.cc", | 253 "mock_audio_source_callback.cc", |
| 254 "mock_audio_source_callback.h", | 254 "mock_audio_source_callback.h", |
| 255 "test_audio_input_controller_factory.cc", | 255 "test_audio_input_controller_factory.cc", |
| 256 "test_audio_input_controller_factory.h", | 256 "test_audio_input_controller_factory.h", |
| 257 ] | 257 ] |
| 258 deps = [ | 258 deps = [ |
| 259 "//testing/gmock", | 259 "//testing/gmock", |
| 260 ] | 260 ] |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 "win/audio_low_latency_output_win_unittest.cc", | 323 "win/audio_low_latency_output_win_unittest.cc", |
| 324 "win/audio_output_win_unittest.cc", | 324 "win/audio_output_win_unittest.cc", |
| 325 "win/core_audio_util_win_unittest.cc", | 325 "win/core_audio_util_win_unittest.cc", |
| 326 ] | 326 ] |
| 327 } | 327 } |
| 328 | 328 |
| 329 if (use_alsa) { | 329 if (use_alsa) { |
| 330 sources += [ "alsa/alsa_output_unittest.cc" ] | 330 sources += [ "alsa/alsa_output_unittest.cc" ] |
| 331 } | 331 } |
| 332 } | 332 } |
| OLD | NEW |