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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 } | 326 } |
327 | 327 |
328 fuzzer_test("v8_wasm_types_section_fuzzer") { | 328 fuzzer_test("v8_wasm_types_section_fuzzer") { |
329 sources = [] | 329 sources = [] |
330 deps = [ | 330 deps = [ |
331 "//v8:wasm_types_section_fuzzer", | 331 "//v8:wasm_types_section_fuzzer", |
332 ] | 332 ] |
333 libfuzzer_options = [ "max_len=500" ] | 333 libfuzzer_options = [ "max_len=500" ] |
334 } | 334 } |
335 | 335 |
336 fuzzer_test("third_party_re2_fuzzer") { | |
337 sources = [ | |
338 "re2_fuzzer.cc", | |
339 ] | |
340 deps = [ | |
341 "//third_party/re2:re2", | |
342 ] | |
343 } | |
344 | |
345 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 336 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
346 sources = [ | 337 sources = [ |
347 "libxml_xml_regexp_compile_fuzzer.cc", | 338 "libxml_xml_regexp_compile_fuzzer.cc", |
348 ] | 339 ] |
349 deps = [ | 340 deps = [ |
350 "//third_party/libxml", | 341 "//third_party/libxml", |
351 ] | 342 ] |
352 libfuzzer_options = [ "max_len=32" ] | 343 libfuzzer_options = [ "max_len=32" ] |
353 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 344 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
354 } | 345 } |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 } | 429 } |
439 | 430 |
440 fuzzer_test("hash_fuzzer") { | 431 fuzzer_test("hash_fuzzer") { |
441 sources = [ | 432 sources = [ |
442 "hash_fuzzer.cc", | 433 "hash_fuzzer.cc", |
443 ] | 434 ] |
444 deps = [ | 435 deps = [ |
445 "//base", | 436 "//base", |
446 ] | 437 ] |
447 } | 438 } |
OLD | NEW |