blob: 6953fbc4a95108894d6e290b000cd29f2e90cd92 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "try",
srcs = ["try.go"],
importpath = "go.skia.org/infra/sk/go/try",
visibility = ["//visibility:public"],
deps = [
"//go/exec",
"//go/gerrit",
"//go/httputils",
"//go/repo_root",
"//go/skerr",
"//task_scheduler/go/specs",
"@com_github_urfave_cli_v2//:cli",
],
)
go_test(
name = "try_test",
srcs = ["try_test.go"],
embed = [":try"],
deps = [
"//go/exec",
"//go/testutils/unittest",
"//go/util",
"@com_github_stretchr_testify//require",
],
)