blob: 12e813509278a1c6276046d561cebdff48446e9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"]) # Apache 2.0
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"],
)
|