Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: media/audio/BUILD.gn

Issue 2646423005: Remove the wave based audio capture implementation for Windows (Closed)
Patch Set: Minor cleanup + documentation Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/audio/audio_manager_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 "win/audio_low_latency_output_win.cc", 170 "win/audio_low_latency_output_win.cc",
171 "win/audio_low_latency_output_win.h", 171 "win/audio_low_latency_output_win.h",
172 "win/audio_manager_win.cc", 172 "win/audio_manager_win.cc",
173 "win/audio_manager_win.h", 173 "win/audio_manager_win.h",
174 "win/avrt_wrapper_win.cc", 174 "win/avrt_wrapper_win.cc",
175 "win/avrt_wrapper_win.h", 175 "win/avrt_wrapper_win.h",
176 "win/core_audio_util_win.cc", 176 "win/core_audio_util_win.cc",
177 "win/core_audio_util_win.h", 177 "win/core_audio_util_win.h",
178 "win/device_enumeration_win.cc", 178 "win/device_enumeration_win.cc",
179 "win/device_enumeration_win.h", 179 "win/device_enumeration_win.h",
180 "win/wavein_input_win.cc",
181 "win/wavein_input_win.h",
182 "win/waveout_output_win.cc", 180 "win/waveout_output_win.cc",
183 "win/waveout_output_win.h", 181 "win/waveout_output_win.h",
184 ] 182 ]
185 183
186 libs += [ 184 libs += [
187 "dxguid.lib", 185 "dxguid.lib",
188 "setupapi.lib", 186 "setupapi.lib",
189 "winmm.lib", 187 "winmm.lib",
190 ] 188 ]
191 } 189 }
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 ] 375 ]
378 } 376 }
379 377
380 if (use_alsa) { 378 if (use_alsa) {
381 sources += [ 379 sources += [
382 "alsa/alsa_output_unittest.cc", 380 "alsa/alsa_output_unittest.cc",
383 "audio_low_latency_input_output_unittest.cc", 381 "audio_low_latency_input_output_unittest.cc",
384 ] 382 ]
385 } 383 }
386 } 384 }
OLDNEW
« no previous file with comments | « no previous file | media/audio/audio_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698