aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/simple_binary_with_library/BUILD.in
blob: b60e84f17ee812f82d69688cb2bd7c610d0cbfb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
load("@rules_python//python:defs.bzl", "py_library")

py_library(
    name = "simple_binary_with_library",
    srcs = [
        "__init__.py",
        "bar.py",
        "foo.py",
    ],
)

# This target should be kept unmodified by Gazelle.
py_library(
    name = "custom",
    srcs = [
        "bar.py",
    ],
)