blob: dbf78b851ce02397295b938301a0587ccf61ab43 [file] [log] [blame]
# Copyright 2023 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
import("//build_overrides/pigweed.gni")
import("$dir_pw_build/python.gni")
pw_python_package("tools") {
setup = [
"pyproject.toml",
"setup.cfg",
]
sources = [
"gonk_tools/__init__.py",
"gonk_tools/__main__.py",
"gonk_tools/binary_handler.py",
"gonk_tools/build_project.py",
"gonk_tools/find_serial_port.py",
"gonk_tools/firmware_files.py",
"gonk_tools/flash.py",
"gonk_tools/gonk_log_stream.py",
"gonk_tools/presubmit_checks.py",
"gonk_tools/write_fpga.py",
]
tests = [ "binary_handler_test.py" ]
python_deps = [
"$dir_pw_arduino_build/py",
"$dir_pw_build/py",
"$dir_pw_cli/py",
"$dir_pw_console/py",
"$dir_pw_hdlc/py",
"$dir_pw_log/py",
"$dir_pw_log_tokenized/py",
"$dir_pw_presubmit/py",
"$dir_pw_tokenizer/py",
"//lib/adc:protos.python",
]
pylintrc = "$dir_pigweed/.pylintrc"
}