Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 2797473003: Add LLVM fuzzer: Skia color space and color transform (Closed)
Patch Set: rm -f DCHECK, use static buffers. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/color_space_data.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/color_space_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698