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

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

Issue 1678433002: Motown: Remove LPCM optimizations, fix prepare, add flush, add ActiveMultistreamSink model/stage (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Sync 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 | « services/media/BUILD.gn ('k') | services/media/framework/allocator.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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/module_args/mojo.gni") 5 import("//build/module_args/mojo.gni")
6 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni") 6 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni")
7 7
8 source_set("framework") { 8 source_set("framework") {
9 sources = [ 9 sources = [
10 "allocator.cc",
11 "allocator.h",
12 "conversion_pipeline_builder.cc", 10 "conversion_pipeline_builder.cc",
13 "conversion_pipeline_builder.h", 11 "conversion_pipeline_builder.h",
14 "engine.cc", 12 "engine.cc",
15 "engine.h", 13 "engine.h",
16 "formatting.cc", 14 "formatting.cc",
17 "formatting.h", 15 "formatting.h",
16 "graph.cc",
17 "graph.h",
18 "lpcm_util.cc", 18 "lpcm_util.cc",
19 "lpcm_util.h", 19 "lpcm_util.h",
20 "metadata.cc", 20 "metadata.cc",
21 "metadata.h", 21 "metadata.h",
22 "models/active_multistream_sink.h",
22 "models/active_sink.h", 23 "models/active_sink.h",
23 "models/active_source.h", 24 "models/active_source.h",
24 "models/demand.h", 25 "models/demand.h",
25 "models/lpcm_frame_buffer.cc", 26 "models/multistream_source.h",
26 "models/lpcm_frame_buffer.h", 27 "models/part.h",
27 "models/lpcm_transform.h", 28 "models/transform.h",
28 "models/multistream_packet_source.h",
29 "models/packet_transform.h",
30 "packet.cc", 29 "packet.cc",
31 "packet.h", 30 "packet.h",
32 "parts/decoder.h", 31 "parts/decoder.h",
33 "parts/demux.h", 32 "parts/demux.h",
34 "parts/file_reader.cc", 33 "parts/file_reader.cc",
35 "parts/file_reader.h", 34 "parts/file_reader.h",
36 "parts/lpcm_reformatter.cc", 35 "parts/lpcm_reformatter.cc",
37 "parts/lpcm_reformatter.h", 36 "parts/lpcm_reformatter.h",
38 "parts/null_sink.cc", 37 "parts/null_sink.cc",
39 "parts/null_sink.h", 38 "parts/null_sink.h",
40 "parts/reader.cc", 39 "parts/reader.cc",
41 "parts/reader.h", 40 "parts/reader.h",
42 "ptr.h", 41 "payload_allocator.cc",
42 "payload_allocator.h",
43 "refs.cc",
44 "refs.h",
43 "result.h", 45 "result.h",
46 "safe_clone.h",
47 "stages/active_multistream_sink_stage.cc",
48 "stages/active_multistream_sink_stage.h",
44 "stages/active_sink_stage.cc", 49 "stages/active_sink_stage.cc",
45 "stages/active_sink_stage.h", 50 "stages/active_sink_stage.h",
46 "stages/active_source_stage.cc", 51 "stages/active_source_stage.cc",
47 "stages/active_source_stage.h", 52 "stages/active_source_stage.h",
48 "stages/distributor_stage.cc", 53 "stages/input.cc",
49 "stages/distributor_stage.h", 54 "stages/input.h",
50 "stages/lpcm_stage_input.cc", 55 "stages/multistream_source_stage.cc",
51 "stages/lpcm_stage_input.h", 56 "stages/multistream_source_stage.h",
52 "stages/lpcm_stage_output.cc", 57 "stages/output.cc",
53 "stages/lpcm_stage_output.h", 58 "stages/output.h",
54 "stages/lpcm_transform_stage.cc",
55 "stages/lpcm_transform_stage.h",
56 "stages/packet_transform_stage.cc",
57 "stages/packet_transform_stage.h",
58 "stages/stage.cc", 59 "stages/stage.cc",
59 "stages/stage.h", 60 "stages/stage.h",
60 "stages/stage_input.cc", 61 "stages/transform_stage.cc",
61 "stages/stage_input.h", 62 "stages/transform_stage.h",
62 "stages/stage_output.cc",
63 "stages/stage_output.h",
64 "stream_type.cc", 63 "stream_type.cc",
65 "stream_type.h", 64 "stream_type.h",
66 ] 65 ]
67 66
68 deps = [ 67 deps = [
69 "//base", 68 "//base",
70 "//url", 69 "//url",
71 ] 70 ]
72 } 71 }
OLDNEW
« 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