summaryrefslogtreecommitdiffhomepage
path: root/pkg/pool/BUILD
blob: 7b1c6b75b2d542ebc0c0674546a15fe84a275759 (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(
    default_visibility = ["//visibility:public"],
    licenses = ["notice"],
)

go_library(
    name = "pool",
    srcs = [
        "pool.go",
    ],
    deps = [
        "//pkg/sync",
    ],
)

go_test(
    name = "pool_test",
    size = "small",
    srcs = [
        "pool_test.go",
    ],
    library = ":pool",
)