blob: d80902e7ce08a9ff2536432bc8bf42c711306bf0 [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"],
embed = [":pythonconfig"],
)
filegroup(
name = "distribution",
srcs = glob(["**"]),
visibility = ["//:__pkg__"],
)