blob: 9cf90db9ee6f7d10df9ab181dc37e709c6422ee1 [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") {
library = ":iomisc"
output_name = "iomisc_tests"
}