blob: 2c570460449a2b6f798d3acca7a944e7c3f18ab3 [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("fuzzer") {
testonly = true
deps = [
":inspect_fuzzers",
]
}
fuzzers_package("inspect_fuzzers") {
fuzzers = [ ":inspect_reader_fuzzer" ]
}
fuzzer("inspect_reader_fuzzer") {
sources = [
"inspect_reader.cc",
]
deps = [
"//zircon/public/lib/inspect",
]
}