blob: 03526301e922b09b46206a7947bb1f2277f05a72 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "urls",
srcs = ["urls.go"],
importpath = "go.skia.org/infra/comp-ui/go/compui/urls",
visibility = ["//visibility:public"],
deps = [
"//go/skerr",
"//go/util",
],
)
go_test(
name = "urls_test",
srcs = ["urls_test.go"],
embed = [":urls"],
deps = [
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)