blob: d5284f0d92fcf23039d22f569ef61e2683a2261d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
load("//tools/go_stateify:defs.bzl", "go_library")
package(
default_visibility = ["//:sandbox"],
licenses = ["notice"],
)
go_library(
name = "inet",
srcs = [
"context.go",
"inet.go",
"test_stack.go",
],
importpath = "gvisor.dev/gvisor/pkg/sentry/inet",
deps = ["//pkg/sentry/context"],
)
|