blob: 2e5b6b8e99a1c9deb7bc0170f0f1d490e4692bf5 [file] [log] [blame]
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 = ["@in_gopkg_yaml_v2//:yaml_v2"],
)
go_test(
name = "manifest_test",
srcs = ["manifest_test.go"],
data = glob(["testdata/**"]),
deps = [":manifest"],
)