| # 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 = [ ":ldmsg-fuzzers" ] | |
| } | |
| fuzzer("ldmsg-fuzzer") { | |
| sources = [ "ldmsg-fuzzer.cc" ] | |
| deps = [ "//zircon/system/ulib/ldmsg" ] | |
| } | |
| fuzzers_package("ldmsg-fuzzers") { | |
| cpp_fuzzers = [ ":ldmsg-fuzzer" ] | |
| } |