blob: 60f63c7a64883abc36098bfb4ef4f2ce8af1a738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "secio",
srcs = [
"full_reader.go",
"secio.go",
],
visibility = ["//pkg/sentry:internal"],
)
go_test(
name = "secio_test",
size = "small",
srcs = ["secio_test.go"],
library = ":secio",
)
|