blob: 1427d240c2dc4be6453c8a9b503f8836c4dbbcff [file] [log] [blame]
# 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",
"//src/sys/pkg/bin/pm/build",
"//third_party/golibs:golang.org/x/crypto",
"//tools/lib/logger",
"//tools/lib/retry",
"//tools/net/sshutil",
]
sources = [
"device.go",
"finder.go",
"monotonic.go",
"resolver.go",
"serial.go",
]
}
}