blob: aaee26c71e8610e23a50842139f49a2a4e2940ea [file] [log] [blame]
# Copyright 2018 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/go/go_binary.gni")
import("//build/go/go_library.gni")
go_library("lib") {
name = "go.fuchsia.dev/fuchsia/build/tools/tarmaker"
sources = [ "main.go" ]
}
go_binary("tarmaker") {
gopackage = "go.fuchsia.dev/fuchsia/build/tools/tarmaker"
deps = [ ":lib" ]
}