blob: d0f1690d94b93766e8a845140580a4226eb2de94 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "pythonconfig",
srcs = [
"pythonconfig.go",
"types.go",
],
importpath = "github.com/bazelbuild/rules_python/gazelle/pythonconfig",
visibility = ["//visibility:public"],
deps = [
"//manifest",
"@bazel_gazelle//label:go_default_library",
"@com_github_emirpasic_gods//lists/singlylinkedlist",
],
)
go_test(
name = "pythonconfig_test",
srcs = ["pythonconfig_test.go"],
deps = [":pythonconfig"],
)
filegroup(
name = "distribution",
srcs = glob(["**"]),
visibility = ["//:__pkg__"],
)