blob: 4d276264c1659fdb21560c3ba3c89f39d480b61b [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "rexec",
srcs = ["rexec.go"],
importpath = "github.com/bazelbuild/remote-apis-sdks/go/pkg/rexec",
visibility = ["//visibility:public"],
deps = [
"//go/pkg/client",
"//go/pkg/command",
"//go/pkg/digest",
"//go/pkg/filemetadata",
"//go/pkg/outerr",
"//go/pkg/uploadinfo",
"@com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:go_default_library",
"@com_github_golang_glog//:go_default_library",
"@com_github_golang_protobuf//proto:go_default_library",
"@com_github_golang_protobuf//ptypes:go_default_library_gen",
"@io_bazel_rules_go//proto/wkt:timestamp_go_proto",
"@org_golang_google_grpc//codes:go_default_library",
"@org_golang_google_grpc//status:go_default_library",
],
)
go_test(
name = "rexec_test",
srcs = ["rexec_test.go"],
deps = [
"//go/pkg/command",
"//go/pkg/digest",
"//go/pkg/fakes",
"//go/pkg/outerr",
"@com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:go_default_library",
"@com_github_golang_protobuf//proto:go_default_library",
"@com_github_google_go_cmp//cmp:go_default_library",
"@com_github_google_go_cmp//cmp/cmpopts:go_default_library",
"@org_golang_google_grpc//codes:go_default_library",
"@org_golang_google_grpc//status:go_default_library",
],
)