summaryrefslogtreecommitdiffhomepage
path: root/pkg/gohacks/BUILD
blob: b4e05f9226c9cbdea7e7c19bb614e0c61ed4509f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "gohacks",
    srcs = [
        "gohacks_unsafe.go",
    ],
    stateify = False,
    visibility = ["//:sandbox"],
)

go_test(
    name = "gohacks_test",
    size = "small",
    srcs = ["gohacks_test.go"],
    library = ":gohacks",
    deps = ["@org_golang_x_sys//unix:go_default_library"],
)