github.com/bazelbuild/remote-apis-sdks@v0.0.0-20240425170053-8a36686a6350/go/pkg/rexec/BUILD.bazel (about)

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "rexec",
     5      srcs = ["rexec.go"],
     6      importpath = "github.com/bazelbuild/remote-apis-sdks/go/pkg/rexec",
     7      visibility = ["//visibility:public"],
     8      deps = [
     9          "//go/pkg/client",
    10          "//go/pkg/command",
    11          "//go/pkg/contextmd",
    12          "//go/pkg/digest",
    13          "//go/pkg/filemetadata",
    14          "//go/pkg/outerr",
    15          "//go/pkg/uploadinfo",
    16          "//go/pkg/symlinkopts",
    17          "@com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:remote_execution_go_proto",
    18          "@com_github_golang_glog//:go_default_library",
    19          "@org_golang_google_grpc//codes:go_default_library",
    20          "@org_golang_google_grpc//status:go_default_library",
    21          "@org_golang_google_protobuf//encoding/prototext:go_default_library",
    22          "@org_golang_google_protobuf//proto:go_default_library",
    23          "@org_golang_google_protobuf//types/known/durationpb:go_default_library",
    24          "@org_golang_google_protobuf//types/known/timestamppb:go_default_library",
    25          "@org_golang_x_sync//errgroup:go_default_library",
    26      ],
    27  )
    28  
    29  go_test(
    30      name = "rexec_test",
    31      srcs = ["rexec_test.go"],
    32      deps = [
    33          "//go/pkg/command",
    34          "//go/pkg/digest",
    35          "//go/pkg/fakes",
    36          "//go/pkg/outerr",
    37          "@com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:remote_execution_go_proto",
    38          "@com_github_google_go_cmp//cmp:go_default_library",
    39          "@com_github_google_go_cmp//cmp/cmpopts:go_default_library",
    40          "@org_golang_google_grpc//codes:go_default_library",
    41          "@org_golang_google_grpc//status:go_default_library",
    42          "@org_golang_google_protobuf//proto:go_default_library",
    43      ],
    44  )