| # 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", | |
| ] | |
| } |