| 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 libs = [] | 129 libs = [] |
| 128 configs += [ | 130 configs += [ |
| 129 ":platform_config", | 131 ":platform_config", |
| 130 "//media:media_config", | 132 "//media:media_config", |
| 131 "//media:media_implementation", | 133 "//media:media_implementation", |
| 132 ] | 134 ] |
| 133 | 135 |
| 134 if (is_mac) { | 136 if (is_mac) { |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 ] | 358 ] |
| 357 } | 359 } |
| 358 | 360 |
| 359 if (use_alsa) { | 361 if (use_alsa) { |
| 360 sources += [ | 362 sources += [ |
| 361 "alsa/alsa_output_unittest.cc", | 363 "alsa/alsa_output_unittest.cc", |
| 362 "audio_low_latency_input_output_unittest.cc", | 364 "audio_low_latency_input_output_unittest.cc", |
| 363 ] | 365 ] |
| 364 } | 366 } |
| 365 } | 367 } |
| OLD | NEW |