blob: 48d376dec8ce141592475a9f68900b0d9630bd15 [file] [log] [blame] [edit]
load("@rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "cleanup",
srcs = [
"cleanup.go",
"signal.go",
],
importpath = "go.skia.org/infra/go/cleanup",
visibility = ["//visibility:public"],
deps = [
"//go/sklog",
"//go/util",
],
)
go_test(
name = "cleanup_test",
srcs = ["cleanup_test.go"],
embed = [":cleanup"],
deps = ["@com_github_stretchr_testify//require"],
)