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

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

Issue 1577953002: Motown in-proc streaming framework used to implement media services. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: sync Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/media/BUILD.gn ('k') | services/media/framework/allocator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/media/framework/BUILD.gn
diff --git a/services/media/framework/BUILD.gn b/services/media/framework/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..29a97c9af117ce40f321f7b092c437ac4573502a
--- /dev/null
+++ b/services/media/framework/BUILD.gn
@@ -0,0 +1,72 @@
+# Copyright 2016 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("//build/module_args/mojo.gni")
+import("$mojo_sdk_root/mojo/public/mojo_sdk.gni")
+
+source_set("framework") {
+ sources = [
+ "allocator.cc",
+ "allocator.h",
+ "conversion_pipeline_builder.cc",
+ "conversion_pipeline_builder.h",
+ "engine.cc",
+ "engine.h",
+ "formatting.cc",
+ "formatting.h",
+ "lpcm_util.cc",
+ "lpcm_util.h",
+ "metadata.cc",
+ "metadata.h",
+ "models/active_sink.h",
+ "models/active_source.h",
+ "models/demand.h",
+ "models/lpcm_frame_buffer.cc",
+ "models/lpcm_frame_buffer.h",
+ "models/lpcm_transform.h",
+ "models/multistream_packet_source.h",
+ "models/packet_transform.h",
+ "packet.cc",
+ "packet.h",
+ "parts/decoder.h",
+ "parts/demux.h",
+ "parts/file_reader.cc",
+ "parts/file_reader.h",
+ "parts/lpcm_reformatter.cc",
+ "parts/lpcm_reformatter.h",
+ "parts/null_sink.cc",
+ "parts/null_sink.h",
+ "parts/reader.cc",
+ "parts/reader.h",
+ "ptr.h",
+ "result.h",
+ "stages/active_sink_stage.cc",
+ "stages/active_sink_stage.h",
+ "stages/active_source_stage.cc",
+ "stages/active_source_stage.h",
+ "stages/distributor_stage.cc",
+ "stages/distributor_stage.h",
+ "stages/lpcm_stage_input.cc",
+ "stages/lpcm_stage_input.h",
+ "stages/lpcm_stage_output.cc",
+ "stages/lpcm_stage_output.h",
+ "stages/lpcm_transform_stage.cc",
+ "stages/lpcm_transform_stage.h",
+ "stages/packet_transform_stage.cc",
+ "stages/packet_transform_stage.h",
+ "stages/stage.cc",
+ "stages/stage.h",
+ "stages/stage_input.cc",
+ "stages/stage_input.h",
+ "stages/stage_output.cc",
+ "stages/stage_output.h",
+ "stream_type.cc",
+ "stream_type.h",
+ ]
+
+ deps = [
+ "//base",
+ "//url",
+ ]
+}
« no previous file with comments | « services/media/BUILD.gn ('k') | services/media/framework/allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698