| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 sources = [ | 55 sources = [ |
| 56 "agc_audio_stream.h", | 56 "agc_audio_stream.h", |
| 57 "audio_device_description.cc", | 57 "audio_device_description.cc", |
| 58 "audio_device_description.h", | 58 "audio_device_description.h", |
| 59 "audio_device_name.cc", | 59 "audio_device_name.cc", |
| 60 "audio_device_name.h", | 60 "audio_device_name.h", |
| 61 "audio_device_thread.cc", | 61 "audio_device_thread.cc", |
| 62 "audio_device_thread.h", | 62 "audio_device_thread.h", |
| 63 "audio_features.cc", | 63 "audio_features.cc", |
| 64 "audio_features.h", | 64 "audio_features.h", |
| 65 "audio_file_writer.h", |
| 65 "audio_input_controller.cc", | 66 "audio_input_controller.cc", |
| 66 "audio_input_controller.h", | 67 "audio_input_controller.h", |
| 67 "audio_input_device.cc", | 68 "audio_input_device.cc", |
| 68 "audio_input_device.h", | 69 "audio_input_device.h", |
| 69 "audio_input_ipc.cc", | 70 "audio_input_ipc.cc", |
| 70 "audio_input_ipc.h", | 71 "audio_input_ipc.h", |
| 71 "audio_io.h", | 72 "audio_io.h", |
| 72 "audio_manager.cc", | 73 "audio_manager.cc", |
| 73 "audio_manager.h", | 74 "audio_manager.h", |
| 74 "audio_manager_base.cc", | 75 "audio_manager_base.cc", |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 ] | 377 ] |
| 377 } | 378 } |
| 378 | 379 |
| 379 if (use_alsa) { | 380 if (use_alsa) { |
| 380 sources += [ | 381 sources += [ |
| 381 "alsa/alsa_output_unittest.cc", | 382 "alsa/alsa_output_unittest.cc", |
| 382 "audio_low_latency_input_output_unittest.cc", | 383 "audio_low_latency_input_output_unittest.cc", |
| 383 ] | 384 ] |
| 384 } | 385 } |
| 385 } | 386 } |
| OLD | NEW |