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 | 10 |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 } | 346 } |
347 | 347 |
348 fuzzer_test("v8_wasm_types_section_fuzzer") { | 348 fuzzer_test("v8_wasm_types_section_fuzzer") { |
349 sources = [] | 349 sources = [] |
350 deps = [ | 350 deps = [ |
351 "//v8:wasm_types_section_fuzzer", | 351 "//v8:wasm_types_section_fuzzer", |
352 ] | 352 ] |
353 libfuzzer_options = [ "max_len=500" ] | 353 libfuzzer_options = [ "max_len=500" ] |
354 } | 354 } |
355 | 355 |
356 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | |
357 sources = [ | |
358 "libxml_xml_regexp_compile_fuzzer.cc", | |
359 ] | |
360 deps = [ | |
361 "//third_party/libxml", | |
362 ] | |
363 libfuzzer_options = [ "max_len=32" ] | |
364 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | |
365 } | |
366 | |
367 fuzzer_test("convert_woff2ttf_fuzzer") { | 356 fuzzer_test("convert_woff2ttf_fuzzer") { |
368 sources = [ | 357 sources = [ |
369 "convert_woff2ttf_fuzzer.cc", | 358 "convert_woff2ttf_fuzzer.cc", |
370 ] | 359 ] |
371 deps = [ | 360 deps = [ |
372 "//third_party/woff2:woff2_dec", | 361 "//third_party/woff2:woff2_dec", |
373 ] | 362 ] |
374 seed_corpus = "//testing/libfuzzer/fuzzers/woff2_corpus" | 363 seed_corpus = "//testing/libfuzzer/fuzzers/woff2_corpus" |
375 libfuzzer_options = [ "max_len=803500" ] | 364 libfuzzer_options = [ "max_len=803500" ] |
376 } | 365 } |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 } | 438 } |
450 | 439 |
451 fuzzer_test("hash_fuzzer") { | 440 fuzzer_test("hash_fuzzer") { |
452 sources = [ | 441 sources = [ |
453 "hash_fuzzer.cc", | 442 "hash_fuzzer.cc", |
454 ] | 443 ] |
455 deps = [ | 444 deps = [ |
456 "//base", | 445 "//base", |
457 ] | 446 ] |
458 } | 447 } |
OLD | NEW |