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 |
11 # root BUILD depenends on this target. Needed for package discovery | 11 # root BUILD depenends on this target. Needed for package discovery |
12 group("fuzzers") { | 12 group("fuzzers") { |
13 } | 13 } |
14 | 14 |
15 fuzzer_test("empty_fuzzer") { | 15 fuzzer_test("empty_fuzzer") { |
16 sources = [ | 16 sources = [ |
17 "empty_fuzzer.cc", | 17 "empty_fuzzer.cc", |
18 ] | 18 ] |
19 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 19 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
20 } | 20 } |
21 | 21 |
22 fuzzer_test("brotli_fuzzer") { | 22 fuzzer_test("brotli_fuzzer") { |
23 sources = [ | 23 sources = [ |
24 "brotli_fuzzer.cc", | 24 "brotli_fuzzer.cc", |
25 ] | 25 ] |
26 deps = [ | 26 deps = [ |
27 "//third_party/brotli:brotli", | 27 "//third_party/brotli:dec", |
28 ] | 28 ] |
29 libfuzzer_options = [ "max_len=1280" ] | 29 libfuzzer_options = [ "max_len=1280" ] |
30 } | 30 } |
31 | 31 |
32 fuzzer_test("courgette_fuzzer") { | 32 fuzzer_test("courgette_fuzzer") { |
33 sources = [ | 33 sources = [ |
34 "courgette_fuzzer.cc", | 34 "courgette_fuzzer.cc", |
35 ] | 35 ] |
36 deps = [ | 36 deps = [ |
37 "//base", | 37 "//base", |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 } | 429 } |
430 | 430 |
431 fuzzer_test("hash_fuzzer") { | 431 fuzzer_test("hash_fuzzer") { |
432 sources = [ | 432 sources = [ |
433 "hash_fuzzer.cc", | 433 "hash_fuzzer.cc", |
434 ] | 434 ] |
435 deps = [ | 435 deps = [ |
436 "//base", | 436 "//base", |
437 ] | 437 ] |
438 } | 438 } |
OLD | NEW |