blob: d85e11f8bdbe992eccdb108e36cca49b668954fb [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "bazel",
srcs = [
"bazel.go",
"flags.go",
],
importpath = "aspect.build/cli/pkg/bazel",
visibility = ["//visibility:public"],
deps = [
"@com_github_bazelbuild_bazelisk//core:go_default_library",
"@com_github_bazelbuild_bazelisk//repositories:go_default_library",
],
)
go_test(
name = "bazel_test",
srcs = ["bazel_test.go"],
deps = [
":bazel",
"@com_github_onsi_gomega//:gomega",
],
)