blob: b22448a0ebde5e1929c5daaf4964edd71179a3e5 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/fuzzing/fuzzer.gni")
group("tests") {
testonly = true
deps = [ ":elfload-fuzzers" ]
}
fuzzer("elfload-fuzzer") {
sources = [ "elfload-fuzzer.cc" ]
deps = [
"//zircon/public/lib/zx",
"//zircon/system/ulib/elfload",
]
}
fuzzers_package("elfload-fuzzers") {
cpp_fuzzers = [ ":elfload-fuzzer" ]
}