| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "decoder_buffer_queue.cc", | 126 "decoder_buffer_queue.cc", |
| 127 "decoder_buffer_queue.h", | 127 "decoder_buffer_queue.h", |
| 128 "decoder_factory.cc", | 128 "decoder_factory.cc", |
| 129 "decoder_factory.h", | 129 "decoder_factory.h", |
| 130 "decrypt_config.cc", | 130 "decrypt_config.cc", |
| 131 "decrypt_config.h", | 131 "decrypt_config.h", |
| 132 "decryptor.cc", | 132 "decryptor.cc", |
| 133 "decryptor.h", | 133 "decryptor.h", |
| 134 "demuxer.cc", | 134 "demuxer.cc", |
| 135 "demuxer.h", | 135 "demuxer.h", |
| 136 "demuxer_factory.cc", |
| 137 "demuxer_factory.h", |
| 136 "demuxer_stream.cc", | 138 "demuxer_stream.cc", |
| 137 "demuxer_stream.h", | 139 "demuxer_stream.h", |
| 138 "djb2.cc", | 140 "djb2.cc", |
| 139 "djb2.h", | 141 "djb2.h", |
| 140 "eme_constants.h", | 142 "eme_constants.h", |
| 141 "encryption_scheme.cc", | 143 "encryption_scheme.cc", |
| 142 "encryption_scheme.h", | 144 "encryption_scheme.h", |
| 143 "feedback_signal_accumulator.h", | 145 "feedback_signal_accumulator.h", |
| 144 "hdr_metadata.cc", | 146 "hdr_metadata.cc", |
| 145 "hdr_metadata.h", | 147 "hdr_metadata.h", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 "silent_sink_suspender.cc", | 218 "silent_sink_suspender.cc", |
| 217 "silent_sink_suspender.h", | 219 "silent_sink_suspender.h", |
| 218 "simd/convert_rgb_to_yuv.h", | 220 "simd/convert_rgb_to_yuv.h", |
| 219 "simd/convert_rgb_to_yuv_c.cc", | 221 "simd/convert_rgb_to_yuv_c.cc", |
| 220 "simd/convert_yuv_to_rgb.h", | 222 "simd/convert_yuv_to_rgb.h", |
| 221 "simd/convert_yuv_to_rgb_c.cc", | 223 "simd/convert_yuv_to_rgb_c.cc", |
| 222 "simd/filter_yuv.h", | 224 "simd/filter_yuv.h", |
| 223 "simd/filter_yuv_c.cc", | 225 "simd/filter_yuv_c.cc", |
| 224 "sinc_resampler.cc", | 226 "sinc_resampler.cc", |
| 225 "sinc_resampler.h", | 227 "sinc_resampler.h", |
| 228 "source_buffer.cc", |
| 229 "source_buffer.h", |
| 226 "stream_parser.cc", | 230 "stream_parser.cc", |
| 227 "stream_parser.h", | 231 "stream_parser.h", |
| 228 "stream_parser_buffer.cc", | 232 "stream_parser_buffer.cc", |
| 229 "stream_parser_buffer.h", | 233 "stream_parser_buffer.h", |
| 230 "subsample_entry.h", | 234 "subsample_entry.h", |
| 231 "surface_manager.h", | 235 "surface_manager.h", |
| 232 "text_cue.cc", | 236 "text_cue.cc", |
| 233 "text_cue.h", | 237 "text_cue.h", |
| 234 "text_ranges.cc", | 238 "text_ranges.cc", |
| 235 "text_ranges.h", | 239 "text_ranges.h", |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 | 627 |
| 624 fuzzer_test("media_container_names_fuzzer") { | 628 fuzzer_test("media_container_names_fuzzer") { |
| 625 sources = [ | 629 sources = [ |
| 626 "container_names_fuzzertest.cc", | 630 "container_names_fuzzertest.cc", |
| 627 ] | 631 ] |
| 628 deps = [ | 632 deps = [ |
| 629 "//base", | 633 "//base", |
| 630 "//media", | 634 "//media", |
| 631 ] | 635 ] |
| 632 } | 636 } |
| OLD | NEW |