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

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

Issue 2115563002: [libfuzzer] Added script for dictionary generation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unused imports, missing copyrights, rename one function. Created 4 years, 5 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 fuzzer_test("url_parse_fuzzer") { 126 fuzzer_test("url_parse_fuzzer") {
127 sources = [ 127 sources = [
128 "url_parse_fuzzer.cc", 128 "url_parse_fuzzer.cc",
129 ] 129 ]
130 deps = [ 130 deps = [
131 "//base", 131 "//base",
132 "//base:i18n", 132 "//base:i18n",
133 "//url:url", 133 "//url:url",
134 ] 134 ]
135 dict = "dicts/generated/url_parse_fuzzer.dict"
135 } 136 }
136 137
137 fuzzer_test("usrsctp_fuzzer") { 138 fuzzer_test("usrsctp_fuzzer") {
138 sources = [ 139 sources = [
139 "usrsctp_fuzzer.cc", 140 "usrsctp_fuzzer.cc",
140 ] 141 ]
141 deps = [ 142 deps = [
142 "//third_party/usrsctp", 143 "//third_party/usrsctp",
143 ] 144 ]
144 } 145 }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 ] 183 ]
183 } 184 }
184 185
185 fuzzer_test("sqlite3_prepare_v2_fuzzer") { 186 fuzzer_test("sqlite3_prepare_v2_fuzzer") {
186 sources = [ 187 sources = [
187 "sqlite3_prepare_v2_fuzzer.cc", 188 "sqlite3_prepare_v2_fuzzer.cc",
188 ] 189 ]
189 deps = [ 190 deps = [
190 "//third_party/sqlite", 191 "//third_party/sqlite",
191 ] 192 ]
192 dict = "dicts/sql.dict" 193 dict = "dicts/generated/sqlite3_prepare_v2_fuzzer.dict"
inferno 2016/07/06 15:33:23 Do we need to delete dicts/sql.dict ? and similarl
mmoroz 2016/07/06 16:12:37 Hm, yes, probably would be better to delete. It wi
193 } 194 }
194 195
195 fuzzer_test("libxml_xml_read_memory_fuzzer") { 196 fuzzer_test("libxml_xml_read_memory_fuzzer") {
196 sources = [ 197 sources = [
197 "libxml_xml_read_memory_fuzzer.cc", 198 "libxml_xml_read_memory_fuzzer.cc",
198 ] 199 ]
199 deps = [ 200 deps = [
200 "//third_party/libxml:libxml", 201 "//third_party/libxml:libxml",
201 ] 202 ]
202 dict = "dicts/xml.dict" 203 dict = "dicts/generated/libxml_xml_read_memory_fuzzer.dict"
203 } 204 }
204 205
205 fuzzer_test("libpng_read_fuzzer") { 206 fuzzer_test("libpng_read_fuzzer") {
206 sources = [ 207 sources = [
207 "libpng_read_fuzzer.cc", 208 "libpng_read_fuzzer.cc",
208 ] 209 ]
209 deps = [ 210 deps = [
210 "//base", 211 "//base",
211 "//third_party/libpng", 212 "//third_party/libpng",
212 ] 213 ]
213 dict = "dicts/png.dict" 214 dict = "dicts/png.dict"
214 } 215 }
215 216
216 fuzzer_test("v8_script_parser_fuzzer") { 217 fuzzer_test("v8_script_parser_fuzzer") {
217 sources = [] 218 sources = []
218 deps = [ 219 deps = [
219 "//v8:parser_fuzzer", 220 "//v8:parser_fuzzer",
220 ] 221 ]
221 dict = "dicts/js.dict" 222 dict = "dicts/generated/v8_script_parser_fuzzer.dict"
222 seed_corpus = "//v8/test/mjsunit/regress/" 223 seed_corpus = "//v8/test/mjsunit/regress/"
223 } 224 }
224 225
225 fuzzer_test("v8_json_parser_fuzzer") { 226 fuzzer_test("v8_json_parser_fuzzer") {
226 sources = [] 227 sources = []
227 deps = [ 228 deps = [
228 "//v8:json_fuzzer", 229 "//v8:json_fuzzer",
229 ] 230 ]
230 dict = "dicts/json.dict" 231 dict = "dicts/json.dict"
231 } 232 }
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 fuzzer_test("icu_break_iterator_utf32_fuzzer") { 327 fuzzer_test("icu_break_iterator_utf32_fuzzer") {
327 sources = [ 328 sources = [
328 "icu_break_iterator_utf32_fuzzer.cc", 329 "icu_break_iterator_utf32_fuzzer.cc",
329 ] 330 ]
330 deps = [ 331 deps = [
331 "//base", 332 "//base",
332 "//base:i18n", 333 "//base:i18n",
333 "//third_party/icu", 334 "//third_party/icu",
334 ] 335 ]
335 } 336 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698