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

Unified Diff: BUILD.gn

Issue 2389853002: Add fuzz executable to GN (Closed)
Patch Set: Trim down deps 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 | fuzz/FuzzParsePath.cpp » ('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 3a81d369ae880e028034ea8521f45eca3802a185..a21549417caaf957d757b3d4b0f0e19274514b7c 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -987,4 +987,20 @@ if (skia_enable_tools) {
]
testonly = true
}
+
+ executable("fuzz") {
+ sources = [
+ "fuzz/FilterFuzz.cpp",
+ "fuzz/FuzzGradients.cpp",
+ "fuzz/FuzzParsePath.cpp",
+ "fuzz/FuzzPathop.cpp",
+ "fuzz/FuzzScaleToSides.cpp",
+ "fuzz/fuzz.cpp",
+ ]
+ deps = [
+ ":flags",
+ ":skia",
+ ]
+ testonly = true
+ }
}
« no previous file with comments | « no previous file | fuzz/FuzzParsePath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698