# 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") | |
import("//build/fuzzing/fuzzer_package.gni") | |
# TODO(fxbug.dev/60168): Update consumers to use `fuchsia_library_fuzzer` instead. | |
template("fuzzer") { | |
fuchsia_library_fuzzer(target_name) { | |
forward_variables_from(invoker, "*") | |
} | |
} | |
set_defaults("fuzzer") { | |
configs = default_executable_configs | |
} |