blob: 9baa8345aac85bb103fa3b5f10d251910ed5f8a9 [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" ]
}
go_test("tests") {
output_name = "iomisc_tests"
gopackages = [ "go.fuchsia.dev/fuchsia/tools/lib/iomisc" ]
deps = [ ":iomisc" ]
}