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

Unified Diff: test/fuzzer/fuzzer.gyp

Issue 2447643002: [wasm] Add a new fuzzer which can also test wasm function calls. (Closed)
Patch Set: sign unsigned mismatch Created 4 years, 2 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
Index: test/fuzzer/fuzzer.gyp
diff --git a/test/fuzzer/fuzzer.gyp b/test/fuzzer/fuzzer.gyp
index ae8d39831ded6e94ff2195d81c8f0a096b7903c5..f24c75bc1a53781c5b0afe0a973bc77b061b7747 100644
--- a/test/fuzzer/fuzzer.gyp
+++ b/test/fuzzer/fuzzer.gyp
@@ -143,6 +143,35 @@
],
},
{
+ 'target_name': 'v8_simple_wasm_call_fuzzer',
+ 'type': 'executable',
+ 'dependencies': [
+ 'wasm_call_fuzzer_lib',
+ ],
+ 'include_dirs': [
+ '../..',
+ ],
+ 'sources': [
+ 'fuzzer.cc',
+ ],
+ },
+ {
+ 'target_name': 'wasm_call_fuzzer_lib',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'fuzzer_support',
+ ],
+ 'include_dirs': [
+ '../..',
+ ],
+ 'sources': [ ### gcmole(all) ###
+ 'wasm-call.cc',
+ '../common/wasm/test-signatures.h',
+ '../common/wasm/wasm-module-runner.cc',
+ '../common/wasm/wasm-module-runner.h',
+ ],
+ },
+ {
'target_name': 'v8_simple_wasm_code_fuzzer',
'type': 'executable',
'dependencies': [
« no previous file with comments | « BUILD.gn ('k') | test/fuzzer/fuzzer.isolate » ('j') | test/fuzzer/wasm-call.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698