blob: 85bdfdbfb836429481f26691f561ddf2d2cc4331 [file] [log] [blame]
# Copyright 2019 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_library.gni")
import("//build/go/go_test.gni")
group("tools") {
testonly = true
public_deps = [ "//tools/build/ninjatrace" ]
}
group("tests") {
testonly = true
deps = [
":build_tests",
"//tools/build/ninjalog:ninjalog_tests",
]
}
go_library("build") {
name = "go.fuchsia.dev/fuchsia/tools/build/lib"
deps = [ "//tools/lib/osmisc" ]
}
go_test("build_tests") {
gopackages = [ "go.fuchsia.dev/fuchsia/tools/build/lib" ]
deps = [ ":build" ]
}