blob: 281bcd29cff764d40840c5131a58fa4d2e814ae9 [file]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "manifest",
srcs = ["manifest.go"],
importpath = "github.com/bazelbuild/rules_python/gazelle/manifest",
visibility = ["//visibility:public"],
deps = [
"@com_github_emirpasic_gods//sets/treeset",
"@in_gopkg_yaml_v2//:yaml_v2",
],
)
go_test(
name = "manifest_test",
srcs = ["manifest_test.go"],
data = glob(["testdata/**"]),
deps = [":manifest"],
)