github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/pkg/tcpip/tests/utils/BUILD (about)

     1  load("//tools:defs.bzl", "go_library")
     2  
     3  package(licenses = ["notice"])
     4  
     5  go_library(
     6      name = "utils",
     7      srcs = ["utils.go"],
     8      visibility = ["//pkg/tcpip/tests:__subpackages__"],
     9      deps = [
    10          "//pkg/tcpip",
    11          "//pkg/tcpip/buffer",
    12          "//pkg/tcpip/header",
    13          "//pkg/tcpip/link/channel",
    14          "//pkg/tcpip/link/ethernet",
    15          "//pkg/tcpip/link/nested",
    16          "//pkg/tcpip/link/pipe",
    17          "//pkg/tcpip/network/ipv4",
    18          "//pkg/tcpip/network/ipv6",
    19          "//pkg/tcpip/stack",
    20          "//pkg/tcpip/transport/icmp",
    21      ],
    22  )