blob: cdf29fb3ecfe92bd436543d9fac0aa1bb781e695 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
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",
],
)