summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/platform/procid/BUILD
blob: 5db4f62615fc8d394e1bea89fde9e8bf03d21f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package(licenses = ["notice"])  # Apache 2.0

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

go_library(
    name = "procid",
    srcs = [
        "procid.go",
        "procid_amd64.s",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/sentry/platform/procid",
    visibility = ["//pkg/sentry:internal"],
)

go_test(
    name = "procid_test",
    size = "small",
    srcs = [
        "procid_test.go",
    ],
    embed = [":procid"],
)

go_test(
    name = "procid_net_test",
    size = "small",
    srcs = [
        "procid_net_test.go",
        "procid_test.go",
    ],
    embed = [":procid"],
)