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

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

Issue 2346723002: Add fuzzer for PRTime() from NSPR. (Closed)
Patch Set: Move fuzzer to base/third_party/nspr/fuzz. Created 4 years, 3 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 | « base/third_party/nspr/fuzz/prtime_fuzzer.cc ('k') | no next file » | 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 658f206d75a088fa06b2e613e58ef8943191fdc4..c1ab1f6c273f20257cae53b06b95eee2eb60d48e 100644
--- a/testing/libfuzzer/fuzzers/BUILD.gn
+++ b/testing/libfuzzer/fuzzers/BUILD.gn
@@ -336,3 +336,14 @@ fuzzer_test("skia_pathop_fuzzer") {
]
libfuzzer_options = [ "max_len=512" ]
}
+
+fuzzer_test("prtime_fuzzer") {
+ sources = [
+ "//base/third_party/nspr/fuzz/prtime_fuzzer.cc",
danakj 2016/09/15 23:51:01 It looks like the sources for every other target a
+ ]
+ deps = [
+ "//base",
+ ]
+ dict = "//base/third_party/nspr/fuzz/prtime.dict"
+ libfuzzer_options = [ "max_len=1024" ]
+}
« no previous file with comments | « base/third_party/nspr/fuzz/prtime_fuzzer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698