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

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: A couple of fixes ported from local version. 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 27 matching lines...) Expand all
172 ] 173 ]
173 } 174 }
174 175
175 fuzzer_test("sqlite3_prepare_v2_fuzzer") { 176 fuzzer_test("sqlite3_prepare_v2_fuzzer") {
176 sources = [ 177 sources = [
177 "sqlite3_prepare_v2_fuzzer.cc", 178 "sqlite3_prepare_v2_fuzzer.cc",
178 ] 179 ]
179 deps = [ 180 deps = [
180 "//third_party/sqlite", 181 "//third_party/sqlite",
181 ] 182 ]
182 dict = "dicts/sql.dict" 183 dict = "dicts/generated/sqlite3_prepare_v2_fuzzer.dict"
183 } 184 }
184 185
185 fuzzer_test("libxml_xml_read_memory_fuzzer") { 186 fuzzer_test("libxml_xml_read_memory_fuzzer") {
186 sources = [ 187 sources = [
187 "libxml_xml_read_memory_fuzzer.cc", 188 "libxml_xml_read_memory_fuzzer.cc",
188 ] 189 ]
189 deps = [ 190 deps = [
190 "//third_party/libxml:libxml", 191 "//third_party/libxml:libxml",
191 ] 192 ]
192 dict = "dicts/xml.dict" 193 dict = "dicts/generated/libxml_xml_read_memory_fuzzer.dict"
193 } 194 }
194 195
195 fuzzer_test("libpng_read_fuzzer") { 196 fuzzer_test("libpng_read_fuzzer") {
196 sources = [ 197 sources = [
197 "libpng_read_fuzzer.cc", 198 "libpng_read_fuzzer.cc",
198 ] 199 ]
199 deps = [ 200 deps = [
200 "//base", 201 "//base",
201 "//third_party/libpng", 202 "//third_party/libpng",
202 ] 203 ]
203 dict = "dicts/png.dict" 204 dict = "dicts/png.dict"
204 } 205 }
205 206
206 fuzzer_test("v8_script_parser_fuzzer") { 207 fuzzer_test("v8_script_parser_fuzzer") {
207 sources = [] 208 sources = []
208 deps = [ 209 deps = [
209 "//v8:parser_fuzzer", 210 "//v8:parser_fuzzer",
210 ] 211 ]
211 dict = "dicts/js.dict" 212 dict = "dicts/generated/v8_script_parser_fuzzer.dict"
212 seed_corpus = "//v8/test/mjsunit/regress/" 213 seed_corpus = "//v8/test/mjsunit/regress/"
213 } 214 }
214 215
215 fuzzer_test("v8_json_parser_fuzzer") { 216 fuzzer_test("v8_json_parser_fuzzer") {
216 sources = [] 217 sources = []
217 deps = [ 218 deps = [
218 "//v8:json_fuzzer", 219 "//v8:json_fuzzer",
219 ] 220 ]
220 dict = "dicts/json.dict" 221 dict = "dicts/json.dict"
221 } 222 }
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 fuzzer_test("icu_break_iterator_utf32_fuzzer") { 317 fuzzer_test("icu_break_iterator_utf32_fuzzer") {
317 sources = [ 318 sources = [
318 "icu_break_iterator_utf32_fuzzer.cc", 319 "icu_break_iterator_utf32_fuzzer.cc",
319 ] 320 ]
320 deps = [ 321 deps = [
321 "//base", 322 "//base",
322 "//base:i18n", 323 "//base:i18n",
323 "//third_party/icu", 324 "//third_party/icu",
324 ] 325 ]
325 } 326 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698