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/runner/BUILD | |
parent | 387501219e87701a6adeb8417542927ee39b9950 (diff) |
Stop depending on go_binary targets.
Closes #3374
PiperOrigin-RevId: 334505627
Diffstat (limited to 'test/runtimes/runner/BUILD')
-rw-r--r-- | test/runtimes/runner/BUILD | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/test/runtimes/runner/BUILD b/test/runtimes/runner/BUILD index dc0d5d5b4..70cc01594 100644 --- a/test/runtimes/runner/BUILD +++ b/test/runtimes/runner/BUILD @@ -1,4 +1,4 @@ -load("//tools:defs.bzl", "go_binary", "go_test") +load("//tools:defs.bzl", "go_binary") package(licenses = ["notice"]) @@ -7,16 +7,5 @@ go_binary( testonly = 1, srcs = ["main.go"], visibility = ["//test/runtimes:__pkg__"], - deps = [ - "//pkg/log", - "//pkg/test/dockerutil", - "//pkg/test/testutil", - ], -) - -go_test( - name = "exclude_test", - size = "small", - srcs = ["exclude_test.go"], - library = ":runner", + deps = ["//test/runtimes/runner/lib"], ) |