| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "sounds/audio_stream_handler.cc", | 115 "sounds/audio_stream_handler.cc", |
| 116 "sounds/audio_stream_handler.h", | 116 "sounds/audio_stream_handler.h", |
| 117 "sounds/sounds_manager.cc", | 117 "sounds/sounds_manager.cc", |
| 118 "sounds/sounds_manager.h", | 118 "sounds/sounds_manager.h", |
| 119 "sounds/wav_audio_handler.cc", | 119 "sounds/wav_audio_handler.cc", |
| 120 "sounds/wav_audio_handler.h", | 120 "sounds/wav_audio_handler.h", |
| 121 "virtual_audio_input_stream.cc", | 121 "virtual_audio_input_stream.cc", |
| 122 "virtual_audio_input_stream.h", | 122 "virtual_audio_input_stream.h", |
| 123 "virtual_audio_output_stream.cc", | 123 "virtual_audio_output_stream.cc", |
| 124 "virtual_audio_output_stream.h", | 124 "virtual_audio_output_stream.h", |
| 125 "virtual_audio_sink.cc", |
| 126 "virtual_audio_sink.h", |
| 125 ] | 127 ] |
| 126 deps = [ | 128 deps = [ |
| 127 "//base", | 129 "//base", |
| 128 "//media:shared_memory_support", | 130 "//media:shared_memory_support", |
| 129 "//media/base", | 131 "//media/base", |
| 130 "//url", | 132 "//url", |
| 131 ] | 133 ] |
| 132 libs = [] | 134 libs = [] |
| 133 configs += [ | 135 configs += [ |
| 134 ":platform_config", | 136 ":platform_config", |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 ] | 369 ] |
| 368 } | 370 } |
| 369 | 371 |
| 370 if (use_alsa) { | 372 if (use_alsa) { |
| 371 sources += [ | 373 sources += [ |
| 372 "alsa/alsa_output_unittest.cc", | 374 "alsa/alsa_output_unittest.cc", |
| 373 "audio_low_latency_input_output_unittest.cc", | 375 "audio_low_latency_input_output_unittest.cc", |
| 374 ] | 376 ] |
| 375 } | 377 } |
| 376 } | 378 } |
| OLD | NEW |