blob: 83b385f1453729f728e2d3bfa393e45e53df06af (
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 = "interrupt",
srcs = [
"interrupt.go",
],
visibility = ["//pkg/sentry:internal"],
deps = ["//pkg/sync"],
)
go_test(
name = "interrupt_test",
size = "small",
srcs = ["interrupt_test.go"],
library = ":interrupt",
)
|