github.com/distbuild/reclient@v0.0.0-20240401075343-3de72e395564/internal/pkg/localresources/usage/BUILD.bazel (about)

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "usage",
     5      srcs = ["usage.go"],
     6      importpath = "github.com/bazelbuild/reclient/internal/pkg/localresources/usage",
     7      visibility = ["//:__subpackages__"],
     8      deps = [
     9          "@com_github_golang_glog//:glog",
    10          "@com_github_shirou_gopsutil//process",
    11      ],
    12  )
    13  
    14  go_test(
    15      name = "usage_test",
    16      srcs = ["usage_test.go"],
    17      embed = [":usage"],
    18      deps = [
    19          "@com_github_google_go_cmp//cmp",
    20          "@com_github_google_go_cmp//cmp/cmpopts",
    21          "@com_github_shirou_gopsutil//process",
    22      ],
    23  )