blob: 11d699134c685d19bfb507c5b1815f1448750803 [file] [log] [blame] [edit]
# Copyright 2017 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.
# A template for an action that creates a Fuchsia Go binary.
import("//build/go/go_build.gni")
template("go_binary") {
go_build(target_name) {
forward_variables_from(invoker, "*")
}
}