PR-URL: https://github.com/nodejs/node/pull/53464 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
# Copyright 2017 The Chromium Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//testing/libfuzzer/fuzzer_test.gni")
|
|
|
|
# root BUILD depends on this target. Needed for package discovery
|
|
group("fuzzers") {
|
|
}
|
|
|
|
fuzzer_test("zlib_uncompress_fuzzer") {
|
|
sources = [ "uncompress_fuzzer.cc" ]
|
|
deps = [ "../../../:zlib" ]
|
|
}
|
|
|
|
fuzzer_test("zlib_inflate_fuzzer") {
|
|
sources = [ "inflate_fuzzer.cc" ]
|
|
deps = [ "../../../:zlib" ]
|
|
}
|
|
|
|
fuzzer_test("zlib_inflate_with_header_fuzzer") {
|
|
sources = [ "inflate_with_header_fuzzer.cc" ]
|
|
deps = [ "../../../:zlib" ]
|
|
}
|
|
|
|
fuzzer_test("zlib_streaming_inflate_fuzzer") {
|
|
sources = [ "streaming_inflate_fuzzer.cc" ]
|
|
deps = [ "../../../:zlib" ]
|
|
libfuzzer_options = [ "max_len=256000" ]
|
|
}
|
|
|
|
fuzzer_test("zlib_deflate_set_dictionary_fuzzer") {
|
|
sources = [ "deflate_set_dictionary_fuzzer.cc" ]
|
|
deps = [ "../../../:zlib" ]
|
|
}
|
|
|
|
fuzzer_test("zlib_compress_fuzzer") {
|
|
sources = [ "compress_fuzzer.cc" ]
|
|
deps = [ "../../../:zlib" ]
|
|
}
|
|
|
|
fuzzer_test("zlib_deflate_fuzzer") {
|
|
sources = [ "deflate_fuzzer.cc" ]
|
|
deps = [ "../../../:zlib" ]
|
|
}
|