blob: 53a40e1ec880defc168ee03ac35aa799affa63a1 [file] [log] [blame]
# Copyright 2022 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")
fuchsia_library_fuzzer("noisy_fuzzer") {
sources = [ "noisy-fuzzer.cc" ]
deps = [
"//sdk/lib/syslog/cpp",
"//zircon/system/ulib/zx",
]
}
fuchsia_fuzzer_component("noisy-fuzzer-component") {
component_name = "noisy_fuzzer"
manifest = "meta/noisy_fuzzer.cml"
deps = [ ":noisy_fuzzer" ]
}
fuchsia_fuzzer_package("undercoat-test-fuzzers") {
cpp_fuzzer_components = [ ":noisy-fuzzer-component" ]
}