load("//tools/go_stateify:defs.bzl", "go_library") package(licenses = ["notice"]) go_library( name = "context", testonly = 1, srcs = ["context.go"], importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/transport/tcp/testing/context", visibility = [ "//:sandbox", ], deps = [ "//pkg/tcpip", "//pkg/tcpip/buffer", "//pkg/tcpip/checker", "//pkg/tcpip/header", "//pkg/tcpip/link/channel", "//pkg/tcpip/link/sniffer", "//pkg/tcpip/network/ipv4", "//pkg/tcpip/network/ipv6", "//pkg/tcpip/seqnum", "//pkg/tcpip/stack", "//pkg/tcpip/transport/tcp", "//pkg/waiter", ], )