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

Unified Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 2036523002: Implement a fuzzer for skia paths. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move to testing/libfuzzer Created 4 years, 6 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 | testing/libfuzzer/fuzzers/skia_path_fuzzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/fuzzers/BUILD.gn
diff --git a/testing/libfuzzer/fuzzers/BUILD.gn b/testing/libfuzzer/fuzzers/BUILD.gn
index 4644f8d7006f62f9d3312a4a6a3c438dcf640460..d3671df0432ac3f938435dc05645887647b6f0f4 100644
--- a/testing/libfuzzer/fuzzers/BUILD.gn
+++ b/testing/libfuzzer/fuzzers/BUILD.gn
@@ -288,3 +288,13 @@ fuzzer_test("flatbuffers_verifier_fuzzer") {
libfuzzer_options = [ "max_len=1024" ]
seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus"
}
+
+fuzzer_test("skia_path_fuzzer") {
+ sources = [
+ "skia_path_fuzzer.cc",
+ ]
+ deps = [
+ "//skia",
+ ]
+ libfuzzer_options = [ "max_len=256" ]
+}
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/skia_path_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698