blob: d614b8bb7c969ecfd0e0b390ea27d7e9efce3736 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "timeout",
srcs = ["timeout.go"],
importpath = "go.skia.org/infra/go/timeout",
visibility = ["//visibility:public"],
)
go_test(
name = "timeout_test",
srcs = ["timeout_test.go"],
embed = [":timeout"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)