OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # Individual libfuzzer tests that didn't find their home yet. | 5 # Individual libfuzzer tests that didn't find their home yet. |
6 | 6 |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
10 import("//third_party/pdfium/pdfium.gni") | 10 import("//third_party/pdfium/pdfium.gni") |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 | 52 |
53 if (proprietary_codecs) { | 53 if (proprietary_codecs) { |
54 fuzzer_test("mp4_box_reader_fuzzer") { | 54 fuzzer_test("mp4_box_reader_fuzzer") { |
55 sources = [ | 55 sources = [ |
56 "mp4_box_reader_fuzzer.cc", | 56 "mp4_box_reader_fuzzer.cc", |
57 ] | 57 ] |
58 deps = [ | 58 deps = [ |
59 "//base", | 59 "//base", |
60 "//media", | 60 "//media", |
61 ] | 61 ] |
| 62 libfuzzer_options = "mp4_box_reader_fuzzer.options" |
| 63 dict = "dicts/mp4.dict" |
62 } | 64 } |
63 } | 65 } |
64 | 66 |
65 if (enable_mse_mpeg2ts_stream_parser) { | 67 if (enable_mse_mpeg2ts_stream_parser) { |
66 fuzzer_test("es_parser_adts_fuzzer") { | 68 fuzzer_test("es_parser_adts_fuzzer") { |
67 sources = [ | 69 sources = [ |
68 "es_parser_adts_fuzzer.cc", | 70 "es_parser_adts_fuzzer.cc", |
69 ] | 71 ] |
70 deps = [ | 72 deps = [ |
71 "//base", | 73 "//base", |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 308 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
307 sources = [ | 309 sources = [ |
308 "libxml_xml_regexp_compile_fuzzer.cc", | 310 "libxml_xml_regexp_compile_fuzzer.cc", |
309 ] | 311 ] |
310 deps = [ | 312 deps = [ |
311 "//third_party/libxml", | 313 "//third_party/libxml", |
312 ] | 314 ] |
313 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" | 315 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" |
314 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 316 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
315 } | 317 } |
OLD | NEW |