summaryrefslogtreecommitdiffhomepage
path: root/pkg/sleep/BUILD
blob: ae0fe1522aa6e0266cd88c3182da0a4c3728a33a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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",
)