diff options
Diffstat (limited to 'pkg/shim/BUILD')
-rw-r--r-- | pkg/shim/BUILD | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/pkg/shim/BUILD b/pkg/shim/BUILD index fd6127b97..b115556f5 100644 --- a/pkg/shim/BUILD +++ b/pkg/shim/BUILD @@ -6,7 +6,9 @@ go_library( name = "shim", srcs = [ "api.go", + "debug.go", "epoll.go", + "errors.go", "options.go", "service.go", "service_linux.go", @@ -43,6 +45,8 @@ go_library( "@com_github_gogo_protobuf//types:go_default_library", "@com_github_opencontainers_runtime_spec//specs-go:go_default_library", "@com_github_sirupsen_logrus//:go_default_library", + "@org_golang_google_grpc//codes:go_default_library", + "@org_golang_google_grpc//status:go_default_library", "@org_golang_x_sys//unix:go_default_library", ], ) @@ -50,10 +54,14 @@ go_library( go_test( name = "shim_test", size = "small", - srcs = ["service_test.go"], + srcs = [ + "errors_test.go", + "service_test.go", + ], library = ":shim", deps = [ "//pkg/shim/utils", + "@com_github_containerd_containerd//errdefs:go_default_library", "@com_github_opencontainers_runtime_spec//specs-go:go_default_library", ], ) |