mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
22 lines
472 B
Python
22 lines
472 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "checker",
|
|
testonly = 1,
|
|
srcs = ["checker.go"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//pkg/buffer",
|
|
"//pkg/tcpip",
|
|
"//pkg/tcpip/checksum",
|
|
"//pkg/tcpip/header",
|
|
"//pkg/tcpip/seqnum",
|
|
"@com_github_google_go_cmp//cmp:go_default_library",
|
|
],
|
|
)
|