diff options
author | Adin Scannell <ascannell@google.com> | 2020-09-29 18:33:11 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-29 18:34:59 -0700 |
commit | d4d9238c52ee8eae127f566f1119d915fb6c1a00 (patch) | |
tree | 7fd0086c22e773e1013ba0c45b2947dff51d4d24 /test/runtimes/proctor/BUILD | |
parent | 387501219e87701a6adeb8417542927ee39b9950 (diff) |
Stop depending on go_binary targets.
Closes #3374
PiperOrigin-RevId: 334505627
Diffstat (limited to 'test/runtimes/proctor/BUILD')
-rw-r--r-- | test/runtimes/proctor/BUILD | 25 |
1 files changed, 3 insertions, 22 deletions
diff --git a/test/runtimes/proctor/BUILD b/test/runtimes/proctor/BUILD index d1935cbe8..f66371265 100644 --- a/test/runtimes/proctor/BUILD +++ b/test/runtimes/proctor/BUILD @@ -1,29 +1,10 @@ -load("//tools:defs.bzl", "go_binary", "go_test") +load("//tools:defs.bzl", "go_binary") package(licenses = ["notice"]) go_binary( name = "proctor", - srcs = [ - "go.go", - "java.go", - "nodejs.go", - "php.go", - "proctor.go", - "python.go", - ], - pure = True, + srcs = ["main.go"], visibility = ["//test/runtimes:__pkg__"], -) - -go_test( - name = "proctor_test", - size = "small", - srcs = ["proctor_test.go"], - library = ":proctor", - nogo = False, # FIXME(gvisor.dev/issue/3374): Not working with all build systems. - pure = True, - deps = [ - "//pkg/test/testutil", - ], + deps = ["//test/runtimes/proctor/lib"], ) |