blob: 9145769833f8445cb839c4ef7a653866a7db9a6f [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/ninjago/buildstats",
"//tools/build/ninjago/ninjatrace",
]
}
group("tests") {
testonly = true
deps = [
":build_tests",
"ninjago:tests",
]
}
go_library("build") {
deps = [ "//tools/lib/osmisc" ]
}
go_test("build_tests") {
gopackages = [ "go.fuchsia.dev/fuchsia/tools/build" ]
deps = [ ":build" ]
}