summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/proctor/lib/BUILD
blob: f834f1b5ac3894e8d7742100e39f7f2ce84b25dd (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 = "lib",
    srcs = [
        "go.go",
        "java.go",
        "lib.go",
        "nodejs.go",
        "php.go",
        "python.go",
    ],
    visibility = ["//test/runtimes/proctor:__pkg__"],
    deps = ["@org_golang_x_sys//unix:go_default_library"],
)

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