OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/module_args/mojo.gni") |
| 6 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni") |
| 7 |
| 8 source_set("framework") { |
| 9 sources = [ |
| 10 "allocator.cc", |
| 11 "allocator.h", |
| 12 "conversion_pipeline_builder.cc", |
| 13 "conversion_pipeline_builder.h", |
| 14 "engine.cc", |
| 15 "engine.h", |
| 16 "formatting.cc", |
| 17 "formatting.h", |
| 18 "lpcm_util.cc", |
| 19 "lpcm_util.h", |
| 20 "metadata.cc", |
| 21 "metadata.h", |
| 22 "models/active_sink.h", |
| 23 "models/active_source.h", |
| 24 "models/demand.h", |
| 25 "models/lpcm_frame_buffer.cc", |
| 26 "models/lpcm_frame_buffer.h", |
| 27 "models/lpcm_transform.h", |
| 28 "models/multistream_packet_source.h", |
| 29 "models/packet_transform.h", |
| 30 "packet.cc", |
| 31 "packet.h", |
| 32 "parts/decoder.h", |
| 33 "parts/demux.h", |
| 34 "parts/file_reader.cc", |
| 35 "parts/file_reader.h", |
| 36 "parts/lpcm_reformatter.cc", |
| 37 "parts/lpcm_reformatter.h", |
| 38 "parts/null_sink.cc", |
| 39 "parts/null_sink.h", |
| 40 "parts/reader.cc", |
| 41 "parts/reader.h", |
| 42 "ptr.h", |
| 43 "result.h", |
| 44 "stages/active_sink_stage.cc", |
| 45 "stages/active_sink_stage.h", |
| 46 "stages/active_source_stage.cc", |
| 47 "stages/active_source_stage.h", |
| 48 "stages/distributor_stage.cc", |
| 49 "stages/distributor_stage.h", |
| 50 "stages/lpcm_stage_input.cc", |
| 51 "stages/lpcm_stage_input.h", |
| 52 "stages/lpcm_stage_output.cc", |
| 53 "stages/lpcm_stage_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.h", |
| 60 "stages/stage_input.cc", |
| 61 "stages/stage_input.h", |
| 62 "stages/stage_output.cc", |
| 63 "stages/stage_output.h", |
| 64 "stream_type.cc", |
| 65 "stream_type.h", |
| 66 ] |
| 67 |
| 68 deps = [ |
| 69 "//base", |
| 70 "//url", |
| 71 ] |
| 72 } |
OLD | NEW |