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 |
| 12 group("fuzzers") { |
| 13 } |
| 14 |
11 fuzzer_test("empty_fuzzer") { | 15 fuzzer_test("empty_fuzzer") { |
12 sources = [ | 16 sources = [ |
13 "empty_fuzzer.cc", | 17 "empty_fuzzer.cc", |
14 ] | 18 ] |
15 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 19 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
16 } | 20 } |
17 | 21 |
18 fuzzer_test("brotli_fuzzer") { | 22 fuzzer_test("brotli_fuzzer") { |
19 sources = [ | 23 sources = [ |
20 "brotli_fuzzer.cc", | 24 "brotli_fuzzer.cc", |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 } | 283 } |
280 | 284 |
281 fuzzer_test("libexif_parser_fuzzer") { | 285 fuzzer_test("libexif_parser_fuzzer") { |
282 sources = [ | 286 sources = [ |
283 "libexif_parser_fuzzer.cc", | 287 "libexif_parser_fuzzer.cc", |
284 ] | 288 ] |
285 deps = [ | 289 deps = [ |
286 "//third_party/libexif:libexif_fuzzers", | 290 "//third_party/libexif:libexif_fuzzers", |
287 ] | 291 ] |
288 } | 292 } |
OLD | NEW |