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

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

Issue 1471813002: Mix to an intermediate buffer. (Closed) Base URL: https://github.com/domokit/mojo.git@change7
Patch Set: Final rebase before landing Created 4 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 | services/media/audio/platform/generic/mixer.h » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//mojo/public/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 group("audio") { 8 group("audio") {
9 deps = [ 9 deps = [
10 ":audio_server", 10 ":audio_server",
(...skipping 15 matching lines...) Expand all
26 "audio_output_manager.cc", 26 "audio_output_manager.cc",
27 "audio_pipe.cc", 27 "audio_pipe.cc",
28 "audio_server_app.cc", 28 "audio_server_app.cc",
29 "audio_server_impl.cc", 29 "audio_server_impl.cc",
30 "audio_track_impl.cc", 30 "audio_track_impl.cc",
31 "audio_track_to_output_link.cc", 31 "audio_track_to_output_link.cc",
32 "platform/generic/mixer.cc", 32 "platform/generic/mixer.cc",
33 "platform/generic/mixers/linear_sampler.cc", 33 "platform/generic/mixers/linear_sampler.cc",
34 "platform/generic/mixers/no_op.cc", 34 "platform/generic/mixers/no_op.cc",
35 "platform/generic/mixers/point_sampler.cc", 35 "platform/generic/mixers/point_sampler.cc",
36 "platform/generic/output_formatter.cc",
36 "platform/generic/standard_output_base.cc", 37 "platform/generic/standard_output_base.cc",
37 "platform/generic/throttle_output.cc", 38 "platform/generic/throttle_output.cc",
38 ] 39 ]
39 40
40 libs = [] 41 libs = []
41 42
42 if (is_linux && !is_fnl && !is_android) { 43 if (is_linux && !is_fnl && !is_android) {
43 sources += [ "platform/linux/alsa_output.cc" ] 44 sources += [ "platform/linux/alsa_output.cc" ]
44 libs += [ "asound" ] 45 libs += [ "asound" ]
45 } else { 46 } else {
46 sources += [ "platform/stubs/alsa_output_stub.cc" ] 47 sources += [ "platform/stubs/alsa_output_stub.cc" ]
47 } 48 }
48 } 49 }
OLDNEW
« no previous file with comments | « no previous file | services/media/audio/platform/generic/mixer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698