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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
114 "sounds/audio_stream_handler.h", | 114 "sounds/audio_stream_handler.h", |
115 "sounds/sounds_manager.cc", | 115 "sounds/sounds_manager.cc", |
116 "sounds/sounds_manager.h", | 116 "sounds/sounds_manager.h", |
117 "sounds/wav_audio_handler.cc", | 117 "sounds/wav_audio_handler.cc", |
118 "sounds/wav_audio_handler.h", | 118 "sounds/wav_audio_handler.h", |
119 "virtual_audio_input_stream.cc", | 119 "virtual_audio_input_stream.cc", |
120 "virtual_audio_input_stream.h", | 120 "virtual_audio_input_stream.h", |
121 "virtual_audio_output_stream.cc", | 121 "virtual_audio_output_stream.cc", |
122 "virtual_audio_output_stream.h", | 122 "virtual_audio_output_stream.h", |
123 ] | 123 ] |
124 deps = [] | 124 deps = [ |
125 "//media/mojo/interfaces", | |
126 ] | |
127 public_deps = [ | |
128 "//mojo/common", | |
129 "//mojo/public/cpp/bindings", | |
130 "//mojo/public/cpp/system", | |
131 ] | |
xhwang
2016/04/26 22:54:42
This target will be part of "media" target which s
rchtara
2016/04/29 12:54:46
Done.
| |
125 libs = [] | 132 libs = [] |
126 configs += [ | 133 configs += [ |
127 ":platform_config", | 134 ":platform_config", |
128 "//media:media_config", | 135 "//media:media_config", |
129 "//media:media_implementation", | 136 "//media:media_implementation", |
130 ] | 137 ] |
131 | 138 |
132 if (is_mac) { | 139 if (is_mac) { |
133 sources += [ | 140 sources += [ |
134 "mac/audio_auhal_mac.cc", | 141 "mac/audio_auhal_mac.cc", |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
355 ] | 362 ] |
356 } | 363 } |
357 | 364 |
358 if (use_alsa) { | 365 if (use_alsa) { |
359 sources += [ | 366 sources += [ |
360 "alsa/alsa_output_unittest.cc", | 367 "alsa/alsa_output_unittest.cc", |
361 "audio_low_latency_input_output_unittest.cc", | 368 "audio_low_latency_input_output_unittest.cc", |
362 ] | 369 ] |
363 } | 370 } |
364 } | 371 } |
OLD | NEW |