blob: 4c63af0ea61931a840ef6404b1968904bde4ccac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package(licenses = ["notice"]) # BSD
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "rawfile",
srcs = [
"blockingpoll_amd64.s",
"errors.go",
"rawfile_unsafe.go",
],
importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/link/rawfile",
visibility = [
"//visibility:public",
],
deps = ["//pkg/tcpip"],
)
|