| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 fuzzer_test("v8_wasm_asmjs_fuzzer") { | 262 fuzzer_test("v8_wasm_asmjs_fuzzer") { |
| 263 sources = [] | 263 sources = [] |
| 264 deps = [ | 264 deps = [ |
| 265 "//v8:wasm_asmjs_fuzzer", | 265 "//v8:wasm_asmjs_fuzzer", |
| 266 ] | 266 ] |
| 267 dict = "dicts/v8_wasm.dict" | 267 dict = "dicts/v8_wasm.dict" |
| 268 seed_corpus = "//v8/test/fuzzer/wasm_asmjs/" | 268 seed_corpus = "//v8/test/fuzzer/wasm_asmjs/" |
| 269 libfuzzer_options = [ "max_len=500" ] | 269 libfuzzer_options = [ "max_len=500" ] |
| 270 } | 270 } |
| 271 | 271 |
| 272 fuzzer_test("v8_wasm_data_section_fuzzer") { |
| 273 sources = [] |
| 274 deps = [ |
| 275 "//v8:wasm_data_section_fuzzer", |
| 276 ] |
| 277 libfuzzer_options = [ "max_len=500" ] |
| 278 } |
| 279 |
| 280 fuzzer_test("v8_wasm_function_sigs_section_fuzzer") { |
| 281 sources = [] |
| 282 deps = [ |
| 283 "//v8:wasm_function_sigs_section_fuzzer", |
| 284 ] |
| 285 libfuzzer_options = [ "max_len=500" ] |
| 286 } |
| 287 |
| 288 fuzzer_test("v8_wasm_globals_section_fuzzer") { |
| 289 sources = [] |
| 290 deps = [ |
| 291 "//v8:wasm_globals_section_fuzzer", |
| 292 ] |
| 293 libfuzzer_options = [ "max_len=500" ] |
| 294 } |
| 295 |
| 296 fuzzer_test("v8_wasm_imports_section_fuzzer") { |
| 297 sources = [] |
| 298 deps = [ |
| 299 "//v8:wasm_imports_section_fuzzer", |
| 300 ] |
| 301 libfuzzer_options = [ "max_len=500" ] |
| 302 } |
| 303 |
| 304 fuzzer_test("v8_wasm_memory_section_fuzzer") { |
| 305 sources = [] |
| 306 deps = [ |
| 307 "//v8:wasm_memory_section_fuzzer", |
| 308 ] |
| 309 libfuzzer_options = [ "max_len=500" ] |
| 310 } |
| 311 |
| 312 fuzzer_test("v8_wasm_names_section_fuzzer") { |
| 313 sources = [] |
| 314 deps = [ |
| 315 "//v8:wasm_names_section_fuzzer", |
| 316 ] |
| 317 libfuzzer_options = [ "max_len=500" ] |
| 318 } |
| 319 |
| 320 fuzzer_test("v8_wasm_types_section_fuzzer") { |
| 321 sources = [] |
| 322 deps = [ |
| 323 "//v8:wasm_types_section_fuzzer", |
| 324 ] |
| 325 libfuzzer_options = [ "max_len=500" ] |
| 326 } |
| 327 |
| 272 fuzzer_test("third_party_re2_fuzzer") { | 328 fuzzer_test("third_party_re2_fuzzer") { |
| 273 sources = [ | 329 sources = [ |
| 274 "re2_fuzzer.cc", | 330 "re2_fuzzer.cc", |
| 275 ] | 331 ] |
| 276 deps = [ | 332 deps = [ |
| 277 "//third_party/re2:re2", | 333 "//third_party/re2:re2", |
| 278 ] | 334 ] |
| 279 libfuzzer_options = [ "max_len=32" ] | 335 libfuzzer_options = [ "max_len=32" ] |
| 280 } | 336 } |
| 281 | 337 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 sources = [ | 385 sources = [ |
| 330 "skia_path_common.cc", | 386 "skia_path_common.cc", |
| 331 "skia_path_common.h", | 387 "skia_path_common.h", |
| 332 "skia_pathop_fuzzer.cc", | 388 "skia_pathop_fuzzer.cc", |
| 333 ] | 389 ] |
| 334 deps = [ | 390 deps = [ |
| 335 "//skia", | 391 "//skia", |
| 336 ] | 392 ] |
| 337 libfuzzer_options = [ "max_len=512" ] | 393 libfuzzer_options = [ "max_len=512" ] |
| 338 } | 394 } |
| OLD | NEW |