blob: 4cbd526d4e37e5697679f6e2329ab49f39536d30 [file] [log] [blame]
# Copyright 2019 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("iomisc") {
sources = [
"doc.go",
"iomisc.go",
"match.go",
"match_test.go",
"reader.go",
"reader_test.go",
]
deps = [
"//tools/lib/logger",
"//tools/lib/ring",
]
}
go_test("tests") {
output_name = "iomisc_tests"
gopackages = [ "go.fuchsia.dev/fuchsia/tools/lib/iomisc" ]
deps = [ ":iomisc" ]
}