blob: 962669b10c9cdef50f729ed4e6ed75cd434df41e [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "time_window",
srcs = ["time_window.go"],
importpath = "go.skia.org/infra/autoroll/go/time_window",
visibility = ["//visibility:public"],
)
go_test(
name = "time_window_test",
srcs = ["time_window_test.go"],
embed = [":time_window"],
deps = ["@com_github_stretchr_testify//require"],
)