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

Unified Diff: services/media/audio/BUILD.gn

Issue 1424933002: Add an initial revision of an audio server. (Closed) Base URL: https://github.com/domokit/mojo.git@change4
Patch Set: refactor MixerKernel into a class to prepare for the addition of a linear interpolation sampler Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: services/media/audio/BUILD.gn
diff --git a/services/media/audio/BUILD.gn b/services/media/audio/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..7cddf1f7617553efe91df13dd6bb9069c158b073
--- /dev/null
+++ b/services/media/audio/BUILD.gn
@@ -0,0 +1,40 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//mojo/public/mojo_application.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
+
+group("audio") {
+ deps = [
+ ":audio_server",
+ ]
+}
+
+mojo_native_application("audio_server") {
+ deps = [
+ "//base",
+ "//mojo/application",
+ "//mojo/services/media/audio/interfaces",
+ "//mojo/services/media/common/cpp",
+ "//mojo/services/media/common/interfaces",
+ "//services/media/common",
+ ]
+
+ sources = [
+ "audio_output.cc",
+ "audio_output_manager.cc",
+ "audio_pipe.cc",
+ "audio_server_app.cc",
+ "audio_server_impl.cc",
+ "audio_track_impl.cc",
+ "audio_track_to_output_link.cc",
+ "platform/generic/mixer.cc",
+ "platform/generic/mixers/no_op.cc",
+ "platform/generic/mixers/point_sampler.cc",
+ "platform/generic/standard_output_base.cc",
+ "platform/generic/throttle_output.cc",
+ ]
+
+ libs = []
+}

Powered by Google App Engine
This is Rietveld 408576698