aboutsummaryrefslogtreecommitdiff
path: root/gazelle/pythonconfig/BUILD.bazel
blob: d0f1690d94b93766e8a845140580a4226eb2de94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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__"],
)