blob: 1f4724fc86e510357fb988f77707c744bb00aa82 [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")
import("//build/testing/environments.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"
environments = basic_envs
},
]
}