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

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

Issue 2340813002: [libfuzzer] Blacklist skia_path_fuzzer and skia_pathop_fuzzer for Debug build. (Closed)
Patch Set: Disable skia_pathop_fuzzer as well. Created 4 years, 3 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 | no next file » | 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 fuzzer_test("skia_path_fuzzer") { 316 fuzzer_test("skia_path_fuzzer") {
317 sources = [ 317 sources = [
318 "skia_path_common.cc", 318 "skia_path_common.cc",
319 "skia_path_common.h", 319 "skia_path_common.h",
320 "skia_path_fuzzer.cc", 320 "skia_path_fuzzer.cc",
321 ] 321 ]
322 deps = [ 322 deps = [
323 "//skia", 323 "//skia",
324 ] 324 ]
325 libfuzzer_options = [ "max_len=256" ] 325 libfuzzer_options = [ "max_len=256" ]
326 if (is_debug) {
327 # Disabled due to crashing on SkASSERT (crbug.com/642750, crbug.com/643275).
328 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
329 }
326 } 330 }
327 331
328 fuzzer_test("skia_pathop_fuzzer") { 332 fuzzer_test("skia_pathop_fuzzer") {
329 sources = [ 333 sources = [
330 "skia_path_common.cc", 334 "skia_path_common.cc",
331 "skia_path_common.h", 335 "skia_path_common.h",
332 "skia_pathop_fuzzer.cc", 336 "skia_pathop_fuzzer.cc",
333 ] 337 ]
334 deps = [ 338 deps = [
335 "//skia", 339 "//skia",
336 ] 340 ]
337 libfuzzer_options = [ "max_len=512" ] 341 libfuzzer_options = [ "max_len=512" ]
342 if (is_debug) {
343 # Disabled due to crashing on SkASSERT (crbug.com/642750, crbug.com/643275).
344 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
345 }
338 } 346 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698