blob: b75fb4ed6b45822073839ec1b49e36b82b08f6fe [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/fuzz.gni")
group("tests") {
testonly = true
deps = [ ":ldmsg-fuzzers" ]
}
fuchsia_library_fuzzer("ldmsg-fuzzer") {
sources = [ "ldmsg-fuzzer.cc" ]
deps = [ "//zircon/system/ulib/ldmsg" ]
}
fuchsia_fuzzer_component("ldmsg-fuzzer-component") {
manifest = "meta/ldmsg-fuzzer.cml"
deps = [ ":ldmsg-fuzzer" ]
}
fuchsia_fuzzer_package("ldmsg-fuzzers") {
cpp_fuzzer_components = [ ":ldmsg-fuzzer-component" ]
}