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