Files
gvisor/pkg/sleep/BUILD
T
Ghanan Gowripalan 9c32fd3f4d Do not copy sleep.Waker
sleep.Waker's fields are modified as values.

PiperOrigin-RevId: 320873451
2020-07-12 17:22:08 -07:00

26 lines
455 B
Python

load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "sleep",
srcs = [
"commit_amd64.s",
"commit_arm64.s",
"commit_asm.go",
"commit_noasm.go",
"sleep_unsafe.go",
],
visibility = ["//:sandbox"],
deps = ["//pkg/sync"],
)
go_test(
name = "sleep_test",
size = "medium",
srcs = [
"sleep_test.go",
],
library = ":sleep",
)