| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 "filters/stream_parser_factory.cc", | 166 "filters/stream_parser_factory.cc", |
| 167 "filters/stream_parser_factory.h", | 167 "filters/stream_parser_factory.h", |
| 168 "filters/video_cadence_estimator.cc", | 168 "filters/video_cadence_estimator.cc", |
| 169 "filters/video_cadence_estimator.h", | 169 "filters/video_cadence_estimator.h", |
| 170 "filters/video_renderer_algorithm.cc", | 170 "filters/video_renderer_algorithm.cc", |
| 171 "filters/video_renderer_algorithm.h", | 171 "filters/video_renderer_algorithm.h", |
| 172 "filters/vp8_bool_decoder.cc", | 172 "filters/vp8_bool_decoder.cc", |
| 173 "filters/vp8_bool_decoder.h", | 173 "filters/vp8_bool_decoder.h", |
| 174 "filters/vp8_parser.cc", | 174 "filters/vp8_parser.cc", |
| 175 "filters/vp8_parser.h", | 175 "filters/vp8_parser.h", |
| 176 "filters/vp9_bool_decoder.cc", |
| 177 "filters/vp9_bool_decoder.h", |
| 178 "filters/vp9_compressed_header_parser.cc", |
| 179 "filters/vp9_compressed_header_parser.h", |
| 176 "filters/vp9_parser.cc", | 180 "filters/vp9_parser.cc", |
| 177 "filters/vp9_parser.h", | 181 "filters/vp9_parser.h", |
| 178 "filters/vp9_raw_bits_reader.cc", | 182 "filters/vp9_raw_bits_reader.cc", |
| 179 "filters/vp9_raw_bits_reader.h", | 183 "filters/vp9_raw_bits_reader.h", |
| 184 "filters/vp9_uncompressed_header_parser.cc", |
| 185 "filters/vp9_uncompressed_header_parser.h", |
| 180 "filters/webvtt_util.h", | 186 "filters/webvtt_util.h", |
| 181 "filters/wsola_internals.cc", | 187 "filters/wsola_internals.cc", |
| 182 "filters/wsola_internals.h", | 188 "filters/wsola_internals.h", |
| 183 "formats/common/offset_byte_queue.cc", | 189 "formats/common/offset_byte_queue.cc", |
| 184 "formats/common/offset_byte_queue.h", | 190 "formats/common/offset_byte_queue.h", |
| 185 "formats/webm/webm_audio_client.cc", | 191 "formats/webm/webm_audio_client.cc", |
| 186 "formats/webm/webm_audio_client.h", | 192 "formats/webm/webm_audio_client.h", |
| 187 "formats/webm/webm_cluster_parser.cc", | 193 "formats/webm/webm_cluster_parser.cc", |
| 188 "formats/webm/webm_cluster_parser.h", | 194 "formats/webm/webm_cluster_parser.h", |
| 189 "formats/webm/webm_constants.cc", | 195 "formats/webm/webm_constants.cc", |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 sources = [ | 886 sources = [ |
| 881 "filters/vpx_video_decoder_fuzzertest.cc", | 887 "filters/vpx_video_decoder_fuzzertest.cc", |
| 882 ] | 888 ] |
| 883 deps = [ | 889 deps = [ |
| 884 ":media", | 890 ":media", |
| 885 "//base", | 891 "//base", |
| 886 ] | 892 ] |
| 887 libfuzzer_options = [ "max_len = 400000" ] | 893 libfuzzer_options = [ "max_len = 400000" ] |
| 888 seed_corpus = "//media/test/data" | 894 seed_corpus = "//media/test/data" |
| 889 } | 895 } |
| OLD | NEW |