| Index: testing/libfuzzer/fuzzers/BUILD.gn
|
| diff --git a/testing/libfuzzer/fuzzers/BUILD.gn b/testing/libfuzzer/fuzzers/BUILD.gn
|
| index bab853b854af147699f52e959f5378ef206141c9..21d072bd62dbb2e997bd950f355c650bd4bf362f 100644
|
| --- a/testing/libfuzzer/fuzzers/BUILD.gn
|
| +++ b/testing/libfuzzer/fuzzers/BUILD.gn
|
| @@ -58,7 +58,7 @@ if (proprietary_codecs) {
|
| "//base",
|
| "//media",
|
| ]
|
| - libfuzzer_options = "mp4_box_reader_fuzzer.options"
|
| + libfuzzer_options = [ "max_len=500" ]
|
| dict = "dicts/mp4.dict"
|
| }
|
| }
|
| @@ -219,7 +219,7 @@ fuzzer_test("icu_uregex_open_fuzzer") {
|
| "//third_party/icu",
|
| ]
|
| dict = "dicts/icu_regex.dict"
|
| - libfuzzer_options = "icu_uregex_open_fuzzer.options"
|
| + libfuzzer_options = [ "max_len=128" ]
|
| }
|
|
|
| fuzzer_test("v8_script_parser_fuzzer") {
|
| @@ -244,7 +244,7 @@ fuzzer_test("v8_regexp_parser_fuzzer") {
|
| "//v8:regexp_fuzzer",
|
| ]
|
| dict = "dicts/regexp.dict"
|
| - libfuzzer_options = "v8_regexp_parser_fuzzer.options"
|
| + libfuzzer_options = [ "max_len=1024" ]
|
| }
|
|
|
| fuzzer_test("v8_wasm_fuzzer") {
|
| @@ -253,7 +253,7 @@ fuzzer_test("v8_wasm_fuzzer") {
|
| "//v8:wasm_fuzzer",
|
| ]
|
| dict = "dicts/v8_wasm.dict"
|
| - libfuzzer_options = "v8_wasm_fuzzer.options"
|
| + libfuzzer_options = [ "max_len=500" ]
|
| }
|
|
|
| fuzzer_test("v8_wasm_asmjs_fuzzer") {
|
| @@ -270,7 +270,7 @@ fuzzer_test("third_party_re2_fuzzer") {
|
| deps = [
|
| "//third_party/re2:re2",
|
| ]
|
| - libfuzzer_options = "re2_fuzzer.options"
|
| + libfuzzer_options = [ "max_len=32" ]
|
| }
|
|
|
| fuzzer_test("libxml_xml_regexp_compile_fuzzer") {
|
| @@ -280,6 +280,6 @@ fuzzer_test("libxml_xml_regexp_compile_fuzzer") {
|
| deps = [
|
| "//third_party/libxml",
|
| ]
|
| - libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options"
|
| + libfuzzer_options = [ "max_len=32" ]
|
| additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
|
| }
|
|
|