Make data and srcs additive

This commit is contained in:
Reid 'arrdem' McKenzie 2023-06-03 01:34:57 -06:00
parent 0bf20224d1
commit 657b0fe820

View file

@ -160,6 +160,7 @@ def py_project(name=None,
main_deps=None, main_deps=None,
main_data=None, main_data=None,
shebang=None, shebang=None,
zip_safe=True,
lib_srcs=None, lib_srcs=None,
lib_deps=None, lib_deps=None,
lib_data=None, lib_data=None,
@ -177,21 +178,28 @@ def py_project(name=None,
""" """
lib_srcs = lib_srcs or native.glob(["src/python/**/*.py"], lib_srcs = (lib_srcs or []) + \
native.glob(["src/python/**/*.py"],
exclude=[ exclude=[
"**/*.pyc", "**/*.pyc",
]) ])
lib_data = lib_data or native.glob(["src/resources/**/*",
lib_data = (lib_data or []) + \
native.glob(["src/resources/**/*",
"src/python/**/*"], "src/python/**/*"],
exclude=[ exclude=[
"**/*.py", "**/*.py",
"**/*.pyc", "**/*.pyc",
]) ])
test_srcs = test_srcs or native.glob(["test/python/**/*.py"],
test_srcs = (test_srcs or []) + \
native.glob(["test/python/**/*.py"],
exclude=[ exclude=[
"**/*.pyc", "**/*.pyc",
]) ])
test_data = test_data or native.glob(["test/resources/**/*",
test_data = (test_data or []) + \
native.glob(["test/resources/**/*",
"test/python/**/*"], "test/python/**/*"],
exclude=[ exclude=[
"**/*.py", "**/*.py",
@ -242,6 +250,7 @@ def py_project(name=None,
"//visibility:public", "//visibility:public",
], ],
shebang = shebang, shebang = shebang,
zip_safe=zip_safe,
) )
for src in test_srcs: for src in test_srcs: