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

Unified Diff: BUILD.gn

Issue 1738943004: Adding Wasm + Wasm-asm variant fuzzer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 10 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 | src/wasm/wasm-module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 58fb6861d9ec95b9d757c7f2bd22115ce478d231..0348440328755ebd6638601b2e83c00f12ba5502 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -2044,3 +2044,41 @@ source_set("regexp_fuzzer") {
":toolchain",
]
}
+
+source_set("wasm_fuzzer") {
+ sources = [
+ "test/fuzzer/wasm.cc",
+ ]
+
+ deps = [
+ ":fuzzer_support",
+ ]
+
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":internal_config",
+ ":libplatform_config",
+ ":features",
+ ":toolchain",
+ ]
+}
+
+source_set("wasm_asmjs_fuzzer") {
+ sources = [
+ "test/fuzzer/wasm-asmjs.cc",
+ ]
+
+ deps = [
+ ":fuzzer_support",
+ ]
+
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":internal_config",
+ ":libplatform_config",
+ ":features",
+ ":toolchain",
+ ]
+}
« no previous file with comments | « no previous file | src/wasm/wasm-module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698