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

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

Issue 2123733002: Add a fuzzer for TemplateURLParser/Open Search Descriptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bring patch to head. Created 3 years, 9 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/template_url_parser_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 f550f5277d605fa85faf695c2fabd730297e9588..217e08b5a826a3115b20092ab49c1188ad89cd0a 100644
--- a/testing/libfuzzer/fuzzers/BUILD.gn
+++ b/testing/libfuzzer/fuzzers/BUILD.gn
@@ -8,7 +8,7 @@ import("//build/config/features.gni")
import("//media/media_options.gni")
import("//testing/libfuzzer/fuzzer_test.gni")
-# root BUILD depenends on this target. Needed for package discovery
+# root BUILD depends on this target. Needed for package discovery
group("fuzzers") {
}
@@ -113,6 +113,17 @@ fuzzer_test("string_to_int_fuzzer") {
]
}
+fuzzer_test("template_url_parser_fuzzer") {
+ sources = [
+ "template_url_parser_fuzzer.cc",
+ ]
+ deps = [
+ "//components/search_engines:search_engines",
+ ]
+ dict = "dicts/xml.dict"
+ libfuzzer_options = [ "max_len=4096" ]
+}
+
fuzzer_test("url_parse_fuzzer") {
sources = [
"url_parse_fuzzer.cc",
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/template_url_parser_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698