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