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 import("//third_party/pdfium/pdfium.gni") | 10 import("//third_party/pdfium/pdfium.gni") |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 "//third_party/icu", | 332 "//third_party/icu", |
333 ] | 333 ] |
334 } | 334 } |
335 | 335 |
336 fuzzer_test("v8_script_parser_fuzzer") { | 336 fuzzer_test("v8_script_parser_fuzzer") { |
337 sources = [] | 337 sources = [] |
338 deps = [ | 338 deps = [ |
339 "//v8:parser_fuzzer", | 339 "//v8:parser_fuzzer", |
340 ] | 340 ] |
341 dict = "dicts/js.dict" | 341 dict = "dicts/js.dict" |
| 342 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
342 } | 343 } |
343 | 344 |
344 fuzzer_test("v8_json_parser_fuzzer") { | 345 fuzzer_test("v8_json_parser_fuzzer") { |
345 sources = [] | 346 sources = [] |
346 deps = [ | 347 deps = [ |
347 "//v8:json_fuzzer", | 348 "//v8:json_fuzzer", |
348 ] | 349 ] |
349 } | 350 } |
350 | 351 |
351 fuzzer_test("v8_regexp_parser_fuzzer") { | 352 fuzzer_test("v8_regexp_parser_fuzzer") { |
352 sources = [] | 353 sources = [] |
353 deps = [ | 354 deps = [ |
354 "//v8:regexp_fuzzer", | 355 "//v8:regexp_fuzzer", |
355 ] | 356 ] |
356 dict = "dicts/regexp.dict" | 357 dict = "dicts/regexp.dict" |
357 } | 358 } |
OLD | NEW |