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

Unified Diff: BUILD.gn

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
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | test/fuzzer/wasm-call.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 81057dd98b0134040db39d3aa6c5efda94f286cd..5cbcd425b7ceb97183145d82c68ae98215e6cbe3 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -2816,6 +2816,26 @@ v8_source_set("wasm_code_fuzzer") {
v8_fuzzer("wasm_code_fuzzer") {
}
+v8_source_set("wasm_call_fuzzer") {
+ sources = [
+ "test/fuzzer/wasm-call.cc",
+ ]
+
+ deps = [
+ ":fuzzer_support",
+ ":wasm_module_runner",
+ ":wasm_test_signatures",
+ ]
+
+ configs = [
+ ":external_config",
+ ":internal_config_base",
+ ]
+}
+
+v8_fuzzer("wasm_call_fuzzer") {
+}
+
v8_source_set("lib_wasm_section_fuzzer") {
sources = [
"test/fuzzer/wasm-section-fuzzers.cc",
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | test/fuzzer/wasm-call.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698