| Index: testing/libfuzzer/fuzzers/BUILD.gn
|
| diff --git a/testing/libfuzzer/fuzzers/BUILD.gn b/testing/libfuzzer/fuzzers/BUILD.gn
|
| index 658f206d75a088fa06b2e613e58ef8943191fdc4..8e620ac28a4a9c0d409b10b58a00a8d749afc91a 100644
|
| --- a/testing/libfuzzer/fuzzers/BUILD.gn
|
| +++ b/testing/libfuzzer/fuzzers/BUILD.gn
|
| @@ -269,6 +269,62 @@ fuzzer_test("v8_wasm_asmjs_fuzzer") {
|
| libfuzzer_options = [ "max_len=500" ]
|
| }
|
|
|
| +fuzzer_test("v8_wasm_data_section_fuzzer") {
|
| + sources = []
|
| + deps = [
|
| + "//v8:wasm_data_section_fuzzer",
|
| + ]
|
| + libfuzzer_options = [ "max_len=500" ]
|
| +}
|
| +
|
| +fuzzer_test("v8_wasm_function_sigs_section_fuzzer") {
|
| + sources = []
|
| + deps = [
|
| + "//v8:wasm_function_sigs_section_fuzzer",
|
| + ]
|
| + libfuzzer_options = [ "max_len=500" ]
|
| +}
|
| +
|
| +fuzzer_test("v8_wasm_globals_section_fuzzer") {
|
| + sources = []
|
| + deps = [
|
| + "//v8:wasm_globals_section_fuzzer",
|
| + ]
|
| + libfuzzer_options = [ "max_len=500" ]
|
| +}
|
| +
|
| +fuzzer_test("v8_wasm_imports_section_fuzzer") {
|
| + sources = []
|
| + deps = [
|
| + "//v8:wasm_imports_section_fuzzer",
|
| + ]
|
| + libfuzzer_options = [ "max_len=500" ]
|
| +}
|
| +
|
| +fuzzer_test("v8_wasm_memory_section_fuzzer") {
|
| + sources = []
|
| + deps = [
|
| + "//v8:wasm_memory_section_fuzzer",
|
| + ]
|
| + libfuzzer_options = [ "max_len=500" ]
|
| +}
|
| +
|
| +fuzzer_test("v8_wasm_names_section_fuzzer") {
|
| + sources = []
|
| + deps = [
|
| + "//v8:wasm_names_section_fuzzer",
|
| + ]
|
| + libfuzzer_options = [ "max_len=500" ]
|
| +}
|
| +
|
| +fuzzer_test("v8_wasm_types_section_fuzzer") {
|
| + sources = []
|
| + deps = [
|
| + "//v8:wasm_types_section_fuzzer",
|
| + ]
|
| + libfuzzer_options = [ "max_len=500" ]
|
| +}
|
| +
|
| fuzzer_test("third_party_re2_fuzzer") {
|
| sources = [
|
| "re2_fuzzer.cc",
|
|
|