blob: 30a3e561eee30cded94710489323957e39c3c189 [file] [log] [blame] [edit]
# Copyright 2022 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")
if (is_host) {
go_library("device") {
testonly = true
deps = [
"../artifacts",
"../ffx",
"../packages",
"../paver",
"../sl4f",
"../util",
"//third_party/golibs:golang.org/x/crypto",
"//tools/lib/logger",
"//tools/lib/retry",
"//tools/net/sshutil",
]
sources = [
"device.go",
"finder.go",
"monotonic.go",
"node_names.go",
"node_names_test.go",
"resolver.go",
"serial.go",
]
}
go_test("host-target-testing-device-test") {
library = ":device"
}
}