Index: BUILD.gn |
diff --git a/BUILD.gn b/BUILD.gn |
index eef2f19702373b7db90c4bbdf47052de2e0fe622..aedcd147d8750df2399265811e70cba5830ba2ca 100644 |
--- a/BUILD.gn |
+++ b/BUILD.gn |
@@ -1936,6 +1936,24 @@ if ((current_toolchain == host_toolchain && v8_toolset_for_d8 == "host") || |
} |
} |
+source_set("json_fuzzer") { |
+ sources = [ |
+ "test/fuzzer/json.cc", |
+ ] |
+ |
+ deps = [ |
+ ":fuzzer_support", |
+ ] |
+ |
+ configs -= [ "//build/config/compiler:chromium_code" ] |
+ configs += [ "//build/config/compiler:no_chromium_code" ] |
+ configs += [ |
+ ":internal_config", |
+ ":features", |
+ ":toolchain", |
+ ] |
+} |
+ |
source_set("parser_fuzzer") { |
sources = [ |
"test/fuzzer/parser.cc", |