summaryrefslogtreecommitdiffhomepage
path: root/pkg/fspath/BUILD
blob: 67dd1e22575d2c3b4a8077b3ab3d900c1647e301 (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
26
load("//tools:defs.bzl", "go_library", "go_test")

package(default_visibility = ["//visibility:public"])

licenses(["notice"])

go_library(
    name = "fspath",
    srcs = [
        "builder.go",
        "fspath.go",
    ],
    deps = [
        "//pkg/gohacks",
    ],
)

go_test(
    name = "fspath_test",
    size = "small",
    srcs = [
        "builder_test.go",
        "fspath_test.go",
    ],
    library = ":fspath",
)