| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 libfuzzer_options = [ "max_len=500" ] | 324 libfuzzer_options = [ "max_len=500" ] |
| 325 } | 325 } |
| 326 | 326 |
| 327 fuzzer_test("third_party_re2_fuzzer") { | 327 fuzzer_test("third_party_re2_fuzzer") { |
| 328 sources = [ | 328 sources = [ |
| 329 "re2_fuzzer.cc", | 329 "re2_fuzzer.cc", |
| 330 ] | 330 ] |
| 331 deps = [ | 331 deps = [ |
| 332 "//third_party/re2:re2", | 332 "//third_party/re2:re2", |
| 333 ] | 333 ] |
| 334 libfuzzer_options = [ "max_len=32" ] | |
| 335 } | 334 } |
| 336 | 335 |
| 337 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 336 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
| 338 sources = [ | 337 sources = [ |
| 339 "libxml_xml_regexp_compile_fuzzer.cc", | 338 "libxml_xml_regexp_compile_fuzzer.cc", |
| 340 ] | 339 ] |
| 341 deps = [ | 340 deps = [ |
| 342 "//third_party/libxml", | 341 "//third_party/libxml", |
| 343 ] | 342 ] |
| 344 libfuzzer_options = [ "max_len=32" ] | 343 libfuzzer_options = [ "max_len=32" ] |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 } | 429 } |
| 431 | 430 |
| 432 fuzzer_test("hash_fuzzer") { | 431 fuzzer_test("hash_fuzzer") { |
| 433 sources = [ | 432 sources = [ |
| 434 "hash_fuzzer.cc", | 433 "hash_fuzzer.cc", |
| 435 ] | 434 ] |
| 436 deps = [ | 435 deps = [ |
| 437 "//base", | 436 "//base", |
| 438 ] | 437 ] |
| 439 } | 438 } |
| OLD | NEW |