blob: 3a22923d814bb1d9a7a774ca93bcc80be0e0c50f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "port",
srcs = ["port.go"],
visibility = ["//pkg/sentry:internal"],
deps = ["//pkg/sync"],
)
go_test(
name = "port_test",
srcs = ["port_test.go"],
library = ":port",
)
|