summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/inet/BUILD
blob: 159c50efb462c5a963292e2ed06e18e49758981b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package(
    default_visibility = ["//:sandbox"],
    licenses = ["notice"],  # Apache 2.0
)

load("//tools/go_stateify:defs.bzl", "go_library")

go_library(
    name = "inet",
    srcs = [
        "context.go",
        "inet.go",
        "test_stack.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/sentry/inet",
    deps = ["//pkg/sentry/context"],
)