summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/proctor/lib/BUILD
blob: 0c8367dfe31ca807713a178d1cd13119db75af09 (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
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "lib",
    srcs = [
        "go.go",
        "java.go",
        "lib.go",
        "nodejs.go",
        "php.go",
        "python.go",
    ],
    visibility = ["//test/runtimes/proctor:__pkg__"],
)

go_test(
    name = "lib_test",
    size = "small",
    srcs = ["lib_test.go"],
    library = ":lib",
    deps = ["//pkg/test/testutil"],
)