# Copyright 2020 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/dist/packaged_shared_library.gni") | |
# This template is deprecated, call packaged_shared_library() instead. | |
template("variant_shared_library_redirect") { | |
packaged_shared_library(target_name) { | |
forward_variables_from(invoker, | |
"*", | |
[ | |
"testonly", | |
"visibility", | |
]) | |
forward_variables_from(invoker, | |
[ | |
"testonly", | |
"visibility", | |
]) | |
} | |
} |