| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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") { | 243 fuzzer_test("v8_wasm_code_fuzzer") { |
| 244 sources = [] | 244 sources = [] |
| 245 deps = [ | 245 deps = [ |
| 246 "//v8:wasm_code_fuzzer", | 246 "//v8:wasm_code_fuzzer", |
| 247 ] | 247 ] |
| 248 dict = "dicts/v8_wasm.dict" | |
| 249 seed_corpus = "//v8/test/fuzzer/wasm_code/" | |
| 250 libfuzzer_options = [ "max_len=500" ] | 248 libfuzzer_options = [ "max_len=500" ] |
| 251 } | 249 } |
| 252 | 250 |
| 253 fuzzer_test("v8_wasm_fuzzer") { | 251 fuzzer_test("v8_wasm_fuzzer") { |
| 254 sources = [] | 252 sources = [] |
| 255 deps = [ | 253 deps = [ |
| 256 "//v8:wasm_fuzzer", | 254 "//v8:wasm_fuzzer", |
| 257 ] | 255 ] |
| 258 dict = "dicts/v8_wasm.dict" | 256 dict = "dicts/v8_wasm.dict" |
| 259 seed_corpus = "//v8/test/fuzzer/wasm/" | 257 seed_corpus = "//v8/test/fuzzer/wasm/" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 sources = [ | 328 sources = [ |
| 331 "skia_path_common.cc", | 329 "skia_path_common.cc", |
| 332 "skia_path_common.h", | 330 "skia_path_common.h", |
| 333 "skia_pathop_fuzzer.cc", | 331 "skia_pathop_fuzzer.cc", |
| 334 ] | 332 ] |
| 335 deps = [ | 333 deps = [ |
| 336 "//skia", | 334 "//skia", |
| 337 ] | 335 ] |
| 338 libfuzzer_options = [ "max_len=512" ] | 336 libfuzzer_options = [ "max_len=512" ] |
| 339 } | 337 } |
| OLD | NEW |