Chromium Code Reviews| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 413 "//base", | 413 "//base", |
| 414 "//skia", | 414 "//skia", |
| 415 ] | 415 ] |
| 416 libfuzzer_options = [ "max_len=512" ] | 416 libfuzzer_options = [ "max_len=512" ] |
| 417 if (is_debug) { | 417 if (is_debug) { |
| 418 # Disabled due to crashing on SkASSERT (crbug.com/642750, crbug.com/643275). | 418 # Disabled due to crashing on SkASSERT (crbug.com/642750, crbug.com/643275). |
| 419 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 419 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
| 420 } | 420 } |
| 421 } | 421 } |
| 422 | 422 |
| 423 fuzzer_test("skia_color_space_fuzzer") { | |
|
mmoroz
2017/04/04 13:43:06
Could you please move both the source code and the
Noel Gordon
2017/04/05 14:14:07
Don't really work on Skia myself.
I know that we
scroggo_chromium
2017/04/05 21:02:47
+1. FWIW, I do not think it would make sense to pu
mmoroz
2017/04/06 08:26:37
Makes sense. Thanks for the explanation!
| |
| 424 sources = [ | |
| 425 "color_space_data.h", | |
| 426 "skia_color_space_fuzzer.cc", | |
| 427 ] | |
| 428 deps = [ | |
| 429 "//base", | |
| 430 "//skia", | |
| 431 ] | |
| 432 dict = "dicts/icc.dict" | |
| 433 libfuzzer_options = [ "max_len=4194304" ] | |
| 434 } | |
| 435 | |
| 423 fuzzer_test("prtime_fuzzer") { | 436 fuzzer_test("prtime_fuzzer") { |
| 424 sources = [ | 437 sources = [ |
| 425 "prtime_fuzzer.cc", | 438 "prtime_fuzzer.cc", |
| 426 ] | 439 ] |
| 427 deps = [ | 440 deps = [ |
| 428 "//base", | 441 "//base", |
| 429 ] | 442 ] |
| 430 dict = "dicts/prtime.dict" | 443 dict = "dicts/prtime.dict" |
| 431 libfuzzer_options = [ "max_len=1024" ] | 444 libfuzzer_options = [ "max_len=1024" ] |
| 432 } | 445 } |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 449 } | 462 } |
| 450 | 463 |
| 451 fuzzer_test("hash_fuzzer") { | 464 fuzzer_test("hash_fuzzer") { |
| 452 sources = [ | 465 sources = [ |
| 453 "hash_fuzzer.cc", | 466 "hash_fuzzer.cc", |
| 454 ] | 467 ] |
| 455 deps = [ | 468 deps = [ |
| 456 "//base", | 469 "//base", |
| 457 ] | 470 ] |
| 458 } | 471 } |
| OLD | NEW |