Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(688)

Unified Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 2344823002: [libfuzzer][v8][wasm] Add new WebAssembly fuzzers. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698