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

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

Issue 1806313003: Pass task runners to AudioManager constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Pass task runners into AudioManager::Create Created 4 years, 9 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
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "audio_output_proxy.h", 83 "audio_output_proxy.h",
84 "audio_output_resampler.cc", 84 "audio_output_resampler.cc",
85 "audio_output_resampler.h", 85 "audio_output_resampler.h",
86 "audio_output_stream_sink.cc", 86 "audio_output_stream_sink.cc",
87 "audio_output_stream_sink.h", 87 "audio_output_stream_sink.h",
88 "audio_power_monitor.cc", 88 "audio_power_monitor.cc",
89 "audio_power_monitor.h", 89 "audio_power_monitor.h",
90 "audio_source_diverter.h", 90 "audio_source_diverter.h",
91 "audio_streams_tracker.cc", 91 "audio_streams_tracker.cc",
92 "audio_streams_tracker.h", 92 "audio_streams_tracker.h",
93 "audio_thread.cc",
94 "audio_thread.h",
93 "clockless_audio_sink.cc", 95 "clockless_audio_sink.cc",
94 "clockless_audio_sink.h", 96 "clockless_audio_sink.h",
95 "fake_audio_input_stream.cc", 97 "fake_audio_input_stream.cc",
96 "fake_audio_input_stream.h", 98 "fake_audio_input_stream.h",
97 "fake_audio_log_factory.cc", 99 "fake_audio_log_factory.cc",
98 "fake_audio_log_factory.h", 100 "fake_audio_log_factory.h",
99 "fake_audio_manager.cc", 101 "fake_audio_manager.cc",
100 "fake_audio_manager.h", 102 "fake_audio_manager.h",
101 "fake_audio_output_stream.cc", 103 "fake_audio_output_stream.cc",
102 "fake_audio_output_stream.h", 104 "fake_audio_output_stream.h",
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 ] 353 ]
352 } 354 }
353 355
354 if (use_alsa) { 356 if (use_alsa) {
355 sources += [ 357 sources += [
356 "alsa/alsa_output_unittest.cc", 358 "alsa/alsa_output_unittest.cc",
357 "audio_low_latency_input_output_unittest.cc", 359 "audio_low_latency_input_output_unittest.cc",
358 ] 360 ]
359 } 361 }
360 } 362 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698