| OLD | NEW |
| 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 "conversion_pipeline_builder.cc", | 10 "conversion_pipeline_builder.cc", |
| 11 "conversion_pipeline_builder.h", | 11 "conversion_pipeline_builder.h", |
| 12 "engine.cc", | 12 "engine.cc", |
| 13 "engine.h", | 13 "engine.h", |
| 14 "formatting.cc", | 14 "formatting.cc", |
| 15 "formatting.h", | 15 "formatting.h", |
| 16 "graph.cc", | 16 "graph.cc", |
| 17 "graph.h", | 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_multistream_sink.h", |
| 23 "models/active_multistream_source.h", |
| 23 "models/active_sink.h", | 24 "models/active_sink.h", |
| 24 "models/active_source.h", | 25 "models/active_source.h", |
| 25 "models/demand.h", | 26 "models/demand.h", |
| 26 "models/multistream_source.h", | 27 "models/multistream_source.h", |
| 27 "models/part.h", | 28 "models/part.h", |
| 28 "models/transform.h", | 29 "models/transform.h", |
| 29 "packet.cc", | 30 "packet.cc", |
| 30 "packet.h", | 31 "packet.h", |
| 31 "parts/decoder.h", | 32 "parts/decoder.h", |
| 32 "parts/demux.h", | 33 "parts/demux.h", |
| 33 "parts/file_reader.cc", | 34 "parts/file_reader.cc", |
| 34 "parts/file_reader.h", | 35 "parts/file_reader.h", |
| 35 "parts/lpcm_reformatter.cc", | 36 "parts/lpcm_reformatter.cc", |
| 36 "parts/lpcm_reformatter.h", | 37 "parts/lpcm_reformatter.h", |
| 37 "parts/null_sink.cc", | 38 "parts/null_sink.cc", |
| 38 "parts/null_sink.h", | 39 "parts/null_sink.h", |
| 39 "parts/reader.cc", | 40 "parts/reader.cc", |
| 40 "parts/reader.h", | 41 "parts/reader.h", |
| 41 "payload_allocator.cc", | 42 "payload_allocator.cc", |
| 42 "payload_allocator.h", | 43 "payload_allocator.h", |
| 43 "refs.cc", | 44 "refs.cc", |
| 44 "refs.h", | 45 "refs.h", |
| 45 "result.h", | 46 "result.h", |
| 46 "safe_clone.h", | 47 "safe_clone.h", |
| 47 "stages/active_multistream_sink_stage.cc", | 48 "stages/active_multistream_sink_stage.cc", |
| 48 "stages/active_multistream_sink_stage.h", | 49 "stages/active_multistream_sink_stage.h", |
| 50 "stages/active_multistream_source_stage.cc", |
| 51 "stages/active_multistream_source_stage.h", |
| 49 "stages/active_sink_stage.cc", | 52 "stages/active_sink_stage.cc", |
| 50 "stages/active_sink_stage.h", | 53 "stages/active_sink_stage.h", |
| 51 "stages/active_source_stage.cc", | 54 "stages/active_source_stage.cc", |
| 52 "stages/active_source_stage.h", | 55 "stages/active_source_stage.h", |
| 53 "stages/input.cc", | 56 "stages/input.cc", |
| 54 "stages/input.h", | 57 "stages/input.h", |
| 55 "stages/multistream_source_stage.cc", | 58 "stages/multistream_source_stage.cc", |
| 56 "stages/multistream_source_stage.h", | 59 "stages/multistream_source_stage.h", |
| 57 "stages/output.cc", | 60 "stages/output.cc", |
| 58 "stages/output.h", | 61 "stages/output.h", |
| 59 "stages/stage.cc", | 62 "stages/stage.cc", |
| 60 "stages/stage.h", | 63 "stages/stage.h", |
| 61 "stages/transform_stage.cc", | 64 "stages/transform_stage.cc", |
| 62 "stages/transform_stage.h", | 65 "stages/transform_stage.h", |
| 66 "stages/util.cc", |
| 67 "stages/util.h", |
| 63 "stream_type.cc", | 68 "stream_type.cc", |
| 64 "stream_type.h", | 69 "stream_type.h", |
| 65 ] | 70 ] |
| 66 | 71 |
| 67 deps = [ | 72 deps = [ |
| 68 "//base", | 73 "//base", |
| 69 "//url", | 74 "//url", |
| 70 ] | 75 ] |
| 71 } | 76 } |
| OLD | NEW |