blob: 4a96c6f1daeccfc0d3da2e09d6e2c1d53799aaee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package(licenses = ["notice"]) # Apache 2.0
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "linewriter",
srcs = ["linewriter.go"],
importpath = "gvisor.googlesource.com/gvisor/pkg/linewriter",
visibility = ["//visibility:public"],
)
go_test(
name = "linewriter_test",
srcs = ["linewriter_test.go"],
embed = [":linewriter"],
)
|