blob: 93b2d57852777e23d3aaba16b8a2de51e175f00b [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "os_steps",
srcs = ["os_steps.go"],
importpath = "go.skia.org/infra/task_driver/go/lib/os_steps",
visibility = ["//visibility:public"],
deps = [
"//go/util",
"//task_driver/go/td",
],
)
go_test(
name = "os_steps_test",
srcs = ["os_steps_test.go"],
embed = [":os_steps"],
deps = [
"//go/testutils/unittest",
"//task_driver/go/td",
"@com_github_stretchr_testify//require",
],
)