blob: d29c23c68ad53c9dc16dc44833cff06dc86de35f [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")
go_library("runtests") {
sources = [
"data_sinks.go",
"data_sinks_test.go",
"output.go",
"runtests.go",
]
deps = [
"//third_party/golibs:github.com/pkg/sftp",
"//tools/botanist:botanist_lib",
"//tools/build",
"//tools/lib/iomisc",
"//tools/lib/logger",
"//tools/lib/osmisc",
"//tools/lib/retry",
"//tools/net/sshutil",
"//tools/net/tftp",
]
}
go_test("tests") {
library = ":runtests"
output_name = "runtests_tests"
}