blob: e8d795500dcb73bd17ec0576d5d32c9ba7891173 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package(licenses = ["notice"]) # BSD
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "pipe",
srcs = [
"pipe.go",
"pipe_unsafe.go",
"rx.go",
"tx.go",
],
importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/link/sharedmem/pipe",
visibility = ["//:sandbox"],
)
go_test(
name = "pipe_test",
srcs = [
"pipe_test.go",
],
embed = [":pipe"],
)
|