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

Unified Diff: third_party/sqlite/BUILD.gn

Issue 2524753002: Add ossfuzz.c fuzzer for sqlite3 (taken from the upstream). (Closed)
Patch Set: Created 4 years, 1 month 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 | third_party/sqlite/fuzz/ossfuzz.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/BUILD.gn
diff --git a/third_party/sqlite/BUILD.gn b/third_party/sqlite/BUILD.gn
index 97ee6043991c501268c038421b865315d28c3926..4e8abcff5423976e24a2f637e29809c8c8f497f0 100644
--- a/third_party/sqlite/BUILD.gn
+++ b/third_party/sqlite/BUILD.gn
@@ -276,3 +276,14 @@ fuzzer_test("sqlite3_prepare_v2_fuzzer") {
]
dict = "fuzz/sqlite3_prepare_v2_fuzzer.dict"
}
+
+fuzzer_test("sqlite3_ossfuzz_fuzzer") {
+ # TODO(mmoroz, shess): remove fuzz/ossfuzz.c after next sqlite3 update.
Scott Hess - ex-Googler 2016/11/22 19:14:14 Just for my info, you mean replace that reference
mmoroz 2016/11/22 20:11:34 Yes, replace it + remove 'fuzz/ossfuzz.c' file fro
+ sources = [
+ "fuzz/ossfuzz.c",
+ ]
+ deps = [
+ ":sqlite",
+ ]
+ dict = "fuzz/sql.dict"
+}
« no previous file with comments | « no previous file | third_party/sqlite/fuzz/ossfuzz.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698