• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2017 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//testing/libfuzzer/fuzzer_test.gni")
6
7# root BUILD depends on this target. Needed for package discovery
8group("fuzzers") {
9}
10
11fuzzer_test("zlib_uncompress_fuzzer") {
12  sources = [
13    "uncompress_fuzzer.cc",
14  ]
15  deps = [
16    "../../../:zlib",
17  ]
18}
19
20fuzzer_test("zlib_inflate_fuzzer") {
21  sources = [
22    "inflate_fuzzer.cc",
23  ]
24  deps = [
25    "../../../:zlib",
26  ]
27}
28
29fuzzer_test("zlib_deflate_set_dictionary_fuzzer") {
30  sources = [
31    "deflate_set_dictionary_fuzzer.cc",
32  ]
33  deps = [
34    "../../../:zlib",
35  ]
36}
37
38fuzzer_test("zlib_deflate_fuzzer") {
39  sources = [
40    "deflate_fuzzer.cc",
41  ]
42  deps = [
43    "../../../:zlib",
44  ]
45}
46