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

Side by Side Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 2812503002: Initialize ICU before fuzzing the template URL parser. (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Individual libfuzzer tests that didn't find their home yet. 5 # Individual libfuzzer tests that didn't find their home yet.
6 6
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//testing/libfuzzer/fuzzer_test.gni") 9 import("//testing/libfuzzer/fuzzer_test.gni")
10 10
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 deps = [ 111 deps = [
112 "//base", 112 "//base",
113 ] 113 ]
114 } 114 }
115 115
116 fuzzer_test("template_url_parser_fuzzer") { 116 fuzzer_test("template_url_parser_fuzzer") {
117 sources = [ 117 sources = [
118 "template_url_parser_fuzzer.cc", 118 "template_url_parser_fuzzer.cc",
119 ] 119 ]
120 deps = [ 120 deps = [
121 "//base",
122 "//base:i18n",
121 "//components/search_engines:search_engines", 123 "//components/search_engines:search_engines",
122 ] 124 ]
123 dict = "dicts/xml.dict" 125 dict = "dicts/xml.dict"
124 libfuzzer_options = [ "max_len=4096" ] 126 libfuzzer_options = [ "max_len=4096" ]
125 } 127 }
126 128
127 fuzzer_test("url_parse_fuzzer") { 129 fuzzer_test("url_parse_fuzzer") {
128 sources = [ 130 sources = [
129 "url_parse_fuzzer.cc", 131 "url_parse_fuzzer.cc",
130 ] 132 ]
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 } 453 }
452 454
453 fuzzer_test("hash_fuzzer") { 455 fuzzer_test("hash_fuzzer") {
454 sources = [ 456 sources = [
455 "hash_fuzzer.cc", 457 "hash_fuzzer.cc",
456 ] 458 ]
457 deps = [ 459 deps = [
458 "//base", 460 "//base",
459 ] 461 ]
460 } 462 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698