blob: 3b404f58c2eda60546cdf2a303b702673e808ac0 [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")
import("//build/go/go_test.gni")
go_library("lib") {
sources = [
"main.go",
"pargzip.go",
"pargzip_test.go",
]
}
go_binary("tarmaker") {
library = ":lib"
}
go_test("tarmaker_tests") {
library = ":lib"
}