blob: 4da7bcf224346f2b2a4ca16ffc46a9dcce91d759 [file] [log] [blame]
# Copyright 2020 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("syslog") {
name = "go.fuchsia.dev/fuchsia/tools/lib/syslog"
deps = [
"//third_party/golibs:golang.org/x/crypto",
"//tools/lib/logger",
"//tools/lib/retry",
"//tools/lib/runner",
"//tools/net/sshutil",
]
}
go_test("tests") {
output_name = "syslog_tests"
gopackages = [ "go.fuchsia.dev/fuchsia/tools/lib/syslog" ]
deps = [ ":syslog" ]
}