mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
38 lines
902 B
Python
38 lines
902 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "context",
|
|
testonly = 1,
|
|
srcs = [
|
|
"context.go",
|
|
"flow.go",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
deps = [
|
|
"//pkg/buffer",
|
|
"//pkg/refs",
|
|
"//pkg/tcpip",
|
|
"//pkg/tcpip/checker",
|
|
"//pkg/tcpip/checksum",
|
|
"//pkg/tcpip/faketime",
|
|
"//pkg/tcpip/header",
|
|
"//pkg/tcpip/link/channel",
|
|
"//pkg/tcpip/link/sniffer",
|
|
"//pkg/tcpip/network/ipv4",
|
|
"//pkg/tcpip/network/ipv6",
|
|
"//pkg/tcpip/stack",
|
|
"//pkg/tcpip/transport/raw",
|
|
"//pkg/tcpip/transport/udp",
|
|
"//pkg/waiter",
|
|
"@com_github_google_go_cmp//cmp:go_default_library",
|
|
"@org_golang_x_time//rate:go_default_library",
|
|
],
|
|
)
|