blob: 366abed583a7dacd5c0174b1e9765bfeb317fe88 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "executil",
srcs = ["executil.go"],
importpath = "go.skia.org/infra/go/executil",
visibility = ["//visibility:public"],
)
go_test(
name = "executil_test",
srcs = ["executil_test.go"],
embed = [":executil"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)