aboutsummaryrefslogtreecommitdiff
path: root/pw_watch/py/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'pw_watch/py/BUILD.gn')
-rw-r--r--pw_watch/py/BUILD.gn8
1 files changed, 7 insertions, 1 deletions
diff --git a/pw_watch/py/BUILD.gn b/pw_watch/py/BUILD.gn
index 2197983ab..31576d090 100644
--- a/pw_watch/py/BUILD.gn
+++ b/pw_watch/py/BUILD.gn
@@ -24,11 +24,17 @@ pw_python_package("py") {
]
sources = [
"pw_watch/__init__.py",
+ "pw_watch/argparser.py",
"pw_watch/debounce.py",
"pw_watch/watch.py",
"pw_watch/watch_app.py",
]
tests = [ "watch_test.py" ]
pylintrc = "$dir_pigweed/.pylintrc"
- python_deps = [ "$dir_pw_cli/py" ]
+ mypy_ini = "$dir_pigweed/.mypy.ini"
+ python_deps = [
+ "$dir_pw_build/py",
+ "$dir_pw_cli/py",
+ "$dir_pw_console/py",
+ ]
}