blob: 33dde2a316b576e077f8bf4f801eda6b0b1a95f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package(licenses = ["notice"]) # Apache 2.0
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "interrupt",
srcs = [
"interrupt.go",
],
importpath = "gvisor.googlesource.com/gvisor/pkg/sentry/platform/interrupt",
visibility = ["//pkg/sentry:internal"],
)
go_test(
name = "interrupt_test",
size = "small",
srcs = ["interrupt_test.go"],
embed = [":interrupt"],
)
|