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

Unified Diff: BUILD.gn

Issue 1652963002: Add json fuzzer (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 4 years, 11 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') | 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 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",
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698