| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "audio_input_device.h", | 74 "audio_input_device.h", |
| 75 "audio_input_ipc.cc", | 75 "audio_input_ipc.cc", |
| 76 "audio_input_ipc.h", | 76 "audio_input_ipc.h", |
| 77 "audio_io.h", | 77 "audio_io.h", |
| 78 "audio_manager.cc", | 78 "audio_manager.cc", |
| 79 "audio_manager.h", | 79 "audio_manager.h", |
| 80 "audio_manager_base.cc", | 80 "audio_manager_base.cc", |
| 81 "audio_manager_base.h", | 81 "audio_manager_base.h", |
| 82 "audio_output_controller.cc", | 82 "audio_output_controller.cc", |
| 83 "audio_output_controller.h", | 83 "audio_output_controller.h", |
| 84 "audio_output_delegate.cc", |
| 85 "audio_output_delegate.h", |
| 84 "audio_output_device.cc", | 86 "audio_output_device.cc", |
| 85 "audio_output_device.h", | 87 "audio_output_device.h", |
| 86 "audio_output_dispatcher.cc", | 88 "audio_output_dispatcher.cc", |
| 87 "audio_output_dispatcher.h", | 89 "audio_output_dispatcher.h", |
| 88 "audio_output_dispatcher_impl.cc", | 90 "audio_output_dispatcher_impl.cc", |
| 89 "audio_output_dispatcher_impl.h", | 91 "audio_output_dispatcher_impl.h", |
| 90 "audio_output_ipc.cc", | 92 "audio_output_ipc.cc", |
| 91 "audio_output_ipc.h", | 93 "audio_output_ipc.h", |
| 92 "audio_output_proxy.cc", | 94 "audio_output_proxy.cc", |
| 93 "audio_output_proxy.h", | 95 "audio_output_proxy.h", |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 ] | 387 ] |
| 386 } | 388 } |
| 387 | 389 |
| 388 if (use_alsa) { | 390 if (use_alsa) { |
| 389 sources += [ | 391 sources += [ |
| 390 "alsa/alsa_output_unittest.cc", | 392 "alsa/alsa_output_unittest.cc", |
| 391 "audio_low_latency_input_output_unittest.cc", | 393 "audio_low_latency_input_output_unittest.cc", |
| 392 ] | 394 ] |
| 393 } | 395 } |
| 394 } | 396 } |
| OLD | NEW |