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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 "//base", | 402 "//base", |
403 "//skia", | 403 "//skia", |
404 ] | 404 ] |
405 libfuzzer_options = [ "max_len=512" ] | 405 libfuzzer_options = [ "max_len=512" ] |
406 if (is_debug) { | 406 if (is_debug) { |
407 # Disabled due to crashing on SkASSERT (crbug.com/642750, crbug.com/643275). | 407 # Disabled due to crashing on SkASSERT (crbug.com/642750, crbug.com/643275). |
408 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 408 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
409 } | 409 } |
410 } | 410 } |
411 | 411 |
| 412 fuzzer_test("skia_color_space_fuzzer") { |
| 413 sources = [ |
| 414 "color_space_data.h", |
| 415 "skia_color_space_fuzzer.cc", |
| 416 ] |
| 417 deps = [ |
| 418 "//base", |
| 419 "//skia", |
| 420 ] |
| 421 dict = "dicts/icc.dict" |
| 422 libfuzzer_options = [ "max_len=4194304" ] |
| 423 } |
| 424 |
412 fuzzer_test("prtime_fuzzer") { | 425 fuzzer_test("prtime_fuzzer") { |
413 sources = [ | 426 sources = [ |
414 "prtime_fuzzer.cc", | 427 "prtime_fuzzer.cc", |
415 ] | 428 ] |
416 deps = [ | 429 deps = [ |
417 "//base", | 430 "//base", |
418 ] | 431 ] |
419 dict = "dicts/prtime.dict" | 432 dict = "dicts/prtime.dict" |
420 libfuzzer_options = [ "max_len=1024" ] | 433 libfuzzer_options = [ "max_len=1024" ] |
421 } | 434 } |
(...skipping 16 matching lines...) Expand all Loading... |
438 } | 451 } |
439 | 452 |
440 fuzzer_test("hash_fuzzer") { | 453 fuzzer_test("hash_fuzzer") { |
441 sources = [ | 454 sources = [ |
442 "hash_fuzzer.cc", | 455 "hash_fuzzer.cc", |
443 ] | 456 ] |
444 deps = [ | 457 deps = [ |
445 "//base", | 458 "//base", |
446 ] | 459 ] |
447 } | 460 } |
OLD | NEW |