OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 "data_buffer.cc", | 93 "data_buffer.cc", |
94 "data_buffer.h", | 94 "data_buffer.h", |
95 "data_source.cc", | 95 "data_source.cc", |
96 "data_source.h", | 96 "data_source.h", |
97 "decoder_buffer.cc", | 97 "decoder_buffer.cc", |
98 "decoder_buffer.h", | 98 "decoder_buffer.h", |
99 "decoder_buffer_queue.cc", | 99 "decoder_buffer_queue.cc", |
100 "decoder_buffer_queue.h", | 100 "decoder_buffer_queue.h", |
101 "decoder_factory.cc", | 101 "decoder_factory.cc", |
102 "decoder_factory.h", | 102 "decoder_factory.h", |
| 103 "decoder_status.cc", |
| 104 "decoder_status.h", |
103 "decrypt_config.cc", | 105 "decrypt_config.cc", |
104 "decrypt_config.h", | 106 "decrypt_config.h", |
105 "decryptor.cc", | 107 "decryptor.cc", |
106 "decryptor.h", | 108 "decryptor.h", |
107 "demuxer.cc", | 109 "demuxer.cc", |
108 "demuxer.h", | 110 "demuxer.h", |
109 "demuxer_stream.cc", | 111 "demuxer_stream.cc", |
110 "demuxer_stream.h", | 112 "demuxer_stream.h", |
111 "demuxer_stream_provider.cc", | 113 "demuxer_stream_provider.cc", |
112 "demuxer_stream_provider.h", | 114 "demuxer_stream_provider.h", |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 | 575 |
574 fuzzer_test("media_container_names_fuzzer") { | 576 fuzzer_test("media_container_names_fuzzer") { |
575 sources = [ | 577 sources = [ |
576 "container_names_fuzzertest.cc", | 578 "container_names_fuzzertest.cc", |
577 ] | 579 ] |
578 deps = [ | 580 deps = [ |
579 "//base", | 581 "//base", |
580 "//media", | 582 "//media", |
581 ] | 583 ] |
582 } | 584 } |
OLD | NEW |