blob: 48fe979952fa04263b41357e4f8484482cd15302 [file] [log] [blame]
# Copyright 2018 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")
import("//build/package.gni")
go_library("syslog_tests_lib") {
name = "syslog_tests"
deps = [
"//garnet/public/lib/syslog/go/src/syslog",
]
}
go_test("syslog_go_tests") {
gopackage = "syslog_tests"
deps = [":syslog_tests_lib"]
}
package("syslog_gotests") {
testonly = true
deps = [
":syslog_go_tests",
]
tests = [
{
name = "syslog_go_tests"
},
]
}