1# Copyright 2021 The Pigweed Authors 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); you may not 4# use this file except in compliance with the License. You may obtain a copy of 5# the License at 6# 7# https://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 12# License for the specific language governing permissions and limitations under 13# the License. 14 15import("//build_overrides/pigweed.gni") 16 17import("$dir_pw_build/python.gni") 18import("$dir_pw_docgen/docs.gni") 19 20pw_python_package("py") { 21 generate_setup = { 22 metadata = { 23 name = "pw_symbolizer" 24 version = "0.0.1" 25 } 26 } 27 28 sources = [ 29 "pw_symbolizer/__init__.py", 30 "pw_symbolizer/llvm_symbolizer.py", 31 "pw_symbolizer/symbolizer.py", 32 ] 33 34 tests = [ "symbolizer_test.py" ] 35 36 # This is harder to test on mac/windows due to differences in how debug info 37 # is generated. 38 if (host_os == "linux") { 39 inputs = [ "symbolizer_test.cc" ] 40 tests += [ "llvm_symbolizer_test.py" ] 41 python_test_deps = [ "$dir_pw_cli/py" ] 42 } 43 44 pylintrc = "$dir_pigweed/.pylintrc" 45 mypy_ini = "$dir_pigweed/.mypy.ini" 46 ruff_toml = "$dir_pigweed/.ruff.toml" 47} 48