blob: becf889f7058397f509b8f43fdffb1496ffe890d [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") {
name = "go.fuchsia.dev/fuchsia/tools/testing/runtests"
deps = [
"//third_party/golibs:github.com/pkg/sftp",
"//third_party/golibs:golang.org/x/crypto",
"//tools/botanist:botanist_lib",
"//tools/lib/logger",
"//tools/lib/osmisc",
"//tools/lib/retry",
"//tools/net/tftp",
]
}
go_test("tests") {
output_name = "runtests_tests"
gopackages = [ "go.fuchsia.dev/fuchsia/tools/testing/runtests" ]
deps = [ ":runtests" ]
}