| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 fuzzer_test("v8_wasm_fuzzer") { | 283 fuzzer_test("v8_wasm_fuzzer") { |
| 284 sources = [] | 284 sources = [] |
| 285 deps = [ | 285 deps = [ |
| 286 "//v8:wasm_fuzzer", | 286 "//v8:wasm_fuzzer", |
| 287 ] | 287 ] |
| 288 dict = "dicts/v8_wasm.dict" | 288 dict = "dicts/v8_wasm.dict" |
| 289 seed_corpus = "//v8/test/fuzzer/wasm_corpus/" | 289 seed_corpus = "//v8/test/fuzzer/wasm_corpus/" |
| 290 libfuzzer_options = [ "max_len=500" ] | 290 libfuzzer_options = [ "max_len=500" ] |
| 291 } | 291 } |
| 292 | 292 |
| 293 fuzzer_test("v8_wasm_asmjs_fuzzer") { | |
| 294 sources = [] | |
| 295 deps = [ | |
| 296 "//v8:wasm_asmjs_fuzzer", | |
| 297 ] | |
| 298 dict = "dicts/v8_wasm.dict" | |
| 299 seed_corpus = "//v8/test/fuzzer/wasm_asmjs_corpus/" | |
| 300 libfuzzer_options = [ "max_len=500" ] | |
| 301 } | |
| 302 | |
| 303 fuzzer_test("v8_wasm_data_section_fuzzer") { | 293 fuzzer_test("v8_wasm_data_section_fuzzer") { |
| 304 sources = [] | 294 sources = [] |
| 305 deps = [ | 295 deps = [ |
| 306 "//v8:wasm_data_section_fuzzer", | 296 "//v8:wasm_data_section_fuzzer", |
| 307 ] | 297 ] |
| 308 libfuzzer_options = [ "max_len=500" ] | 298 libfuzzer_options = [ "max_len=500" ] |
| 309 } | 299 } |
| 310 | 300 |
| 311 fuzzer_test("v8_wasm_function_sigs_section_fuzzer") { | 301 fuzzer_test("v8_wasm_function_sigs_section_fuzzer") { |
| 312 sources = [] | 302 sources = [] |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 | 454 |
| 465 # TODO(yawano): Add compress test case | 455 # TODO(yawano): Add compress test case |
| 466 fuzzer_test("minizip_uncompress_fuzzer") { | 456 fuzzer_test("minizip_uncompress_fuzzer") { |
| 467 sources = [ | 457 sources = [ |
| 468 "minizip_uncompress_fuzzer.cc", | 458 "minizip_uncompress_fuzzer.cc", |
| 469 ] | 459 ] |
| 470 deps = [ | 460 deps = [ |
| 471 "//third_party/minizip:minizip", | 461 "//third_party/minizip:minizip", |
| 472 ] | 462 ] |
| 473 } | 463 } |
| OLD | NEW |