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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "sounds/sounds_manager.h", | 108 "sounds/sounds_manager.h", |
109 "sounds/wav_audio_handler.cc", | 109 "sounds/wav_audio_handler.cc", |
110 "sounds/wav_audio_handler.h", | 110 "sounds/wav_audio_handler.h", |
111 "virtual_audio_input_stream.cc", | 111 "virtual_audio_input_stream.cc", |
112 "virtual_audio_input_stream.h", | 112 "virtual_audio_input_stream.h", |
113 "virtual_audio_output_stream.cc", | 113 "virtual_audio_output_stream.cc", |
114 "virtual_audio_output_stream.h", | 114 "virtual_audio_output_stream.h", |
115 ] | 115 ] |
116 deps = [] | 116 deps = [] |
117 libs = [] | 117 libs = [] |
118 configs += [ "//media:media_config" ] | 118 configs += [ |
| 119 "//media:media_config", |
| 120 "//media:media_implementation", |
| 121 ] |
119 | 122 |
120 if (is_mac) { | 123 if (is_mac) { |
121 sources += [ | 124 sources += [ |
122 "mac/audio_auhal_mac.cc", | 125 "mac/audio_auhal_mac.cc", |
123 "mac/audio_auhal_mac.h", | 126 "mac/audio_auhal_mac.h", |
124 "mac/audio_device_listener_mac.cc", | 127 "mac/audio_device_listener_mac.cc", |
125 "mac/audio_device_listener_mac.h", | 128 "mac/audio_device_listener_mac.h", |
126 "mac/audio_input_mac.cc", | 129 "mac/audio_input_mac.cc", |
127 "mac/audio_input_mac.h", | 130 "mac/audio_input_mac.h", |
128 "mac/audio_low_latency_input_mac.cc", | 131 "mac/audio_low_latency_input_mac.cc", |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 ] | 337 ] |
335 } | 338 } |
336 | 339 |
337 if (use_alsa) { | 340 if (use_alsa) { |
338 sources += [ | 341 sources += [ |
339 "alsa/alsa_output_unittest.cc", | 342 "alsa/alsa_output_unittest.cc", |
340 "audio_low_latency_input_output_unittest.cc", | 343 "audio_low_latency_input_output_unittest.cc", |
341 ] | 344 ] |
342 } | 345 } |
343 } | 346 } |
OLD | NEW |