aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/simple_binary_with_library/BUILD.in
diff options
context:
space:
mode:
Diffstat (limited to 'gazelle/python/testdata/simple_binary_with_library/BUILD.in')
-rw-r--r--gazelle/python/testdata/simple_binary_with_library/BUILD.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/gazelle/python/testdata/simple_binary_with_library/BUILD.in b/gazelle/python/testdata/simple_binary_with_library/BUILD.in
new file mode 100644
index 0000000..b60e84f
--- /dev/null
+++ b/gazelle/python/testdata/simple_binary_with_library/BUILD.in
@@ -0,0 +1,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",
+ ],
+)