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", |
+ ] |
+} |