OLD | NEW |
---|---|
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
233 | 233 |
234 fuzzer_test("v8_regexp_parser_fuzzer") { | 234 fuzzer_test("v8_regexp_parser_fuzzer") { |
235 sources = [] | 235 sources = [] |
236 deps = [ | 236 deps = [ |
237 "//v8:regexp_fuzzer", | 237 "//v8:regexp_fuzzer", |
238 ] | 238 ] |
239 dict = "dicts/regexp.dict" | 239 dict = "dicts/regexp.dict" |
240 libfuzzer_options = [ "max_len=1024" ] | 240 libfuzzer_options = [ "max_len=1024" ] |
241 } | 241 } |
242 | 242 |
243 fuzzer_test("v8_wasm_code_fuzzer") { | |
244 sources = [] | |
245 deps = [ | |
246 "//v8:wasm_code_fuzzer", | |
247 ] | |
248 dict = "dicts/v8_wasm.dict" | |
249 seed_corpus = "//v8/test/fuzzer/wasm_code/" | |
250 libfuzzer_options = [ "max_len=500" ] | |
251 } | |
252 | |
243 fuzzer_test("v8_wasm_fuzzer") { | 253 fuzzer_test("v8_wasm_fuzzer") { |
244 sources = [] | 254 sources = [] |
245 deps = [ | 255 deps = [ |
246 "//v8:wasm_fuzzer", | 256 "//v8:wasm_fuzzer", |
247 ] | 257 ] |
248 dict = "dicts/v8_wasm.dict" | 258 dict = "dicts/v8_wasm.dict" |
259 seed_corpus = "//v8/test/fuzzer/wasm/" | |
mmoroz
2016/08/30 16:14:20
Just to clarify: I don't see this directory and "w
| |
249 libfuzzer_options = [ "max_len=500" ] | 260 libfuzzer_options = [ "max_len=500" ] |
250 } | 261 } |
251 | 262 |
252 fuzzer_test("v8_wasm_asmjs_fuzzer") { | 263 fuzzer_test("v8_wasm_asmjs_fuzzer") { |
253 sources = [] | 264 sources = [] |
254 deps = [ | 265 deps = [ |
255 "//v8:wasm_asmjs_fuzzer", | 266 "//v8:wasm_asmjs_fuzzer", |
256 ] | 267 ] |
268 dict = "dicts/v8_wasm.dict" | |
269 seed_corpus = "//v8/test/fuzzer/wasm_asmjs/" | |
270 libfuzzer_options = [ "max_len=500" ] | |
257 } | 271 } |
258 | 272 |
259 fuzzer_test("third_party_re2_fuzzer") { | 273 fuzzer_test("third_party_re2_fuzzer") { |
260 sources = [ | 274 sources = [ |
261 "re2_fuzzer.cc", | 275 "re2_fuzzer.cc", |
262 ] | 276 ] |
263 deps = [ | 277 deps = [ |
264 "//third_party/re2:re2", | 278 "//third_party/re2:re2", |
265 ] | 279 ] |
266 libfuzzer_options = [ "max_len=32" ] | 280 libfuzzer_options = [ "max_len=32" ] |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
316 sources = [ | 330 sources = [ |
317 "skia_path_common.cc", | 331 "skia_path_common.cc", |
318 "skia_path_common.h", | 332 "skia_path_common.h", |
319 "skia_pathop_fuzzer.cc", | 333 "skia_pathop_fuzzer.cc", |
320 ] | 334 ] |
321 deps = [ | 335 deps = [ |
322 "//skia", | 336 "//skia", |
323 ] | 337 ] |
324 libfuzzer_options = [ "max_len=512" ] | 338 libfuzzer_options = [ "max_len=512" ] |
325 } | 339 } |
OLD | NEW |