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

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "contextmd",
     5      srcs = ["contextmd.go"],
     6      importpath = "github.com/bazelbuild/remote-apis-sdks/go/pkg/contextmd",
     7      visibility = ["//visibility:public"],
     8      deps = [
     9          "@com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:remote_execution_go_proto",
    10          "@com_github_golang_glog//:go_default_library",
    11          "@com_github_google_uuid//:uuid",
    12          "@org_golang_google_grpc//metadata:go_default_library",
    13          "@org_golang_google_protobuf//proto:go_default_library",
    14      ],
    15  )
    16  
    17  go_test(
    18      name = "contextmd_test",
    19      srcs = ["contextmd_test.go"],
    20      embed = [":contextmd"],
    21  )