blob: e2b0119566f126b66c5ba3292351ee960336ecf8 [file] [log] [blame]
# Copyright (c) 2021 Project CHIP 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
#
# http://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/build.gni")
import("//build_overrides/chip.gni")
import("//build_overrides/pigweed.gni")
import("$dir_pw_build/python.gni")
pw_python_package("build_examples") {
setup = [ "setup.py" ]
inputs = [
# Dependency for the unit test
"testdata/all_targets_except_host.txt",
"testdata/build_all_except_host.txt",
"testdata/build_linux_on_x64.txt",
]
sources = [
"build/__init__.py",
"build/targets.py",
"build_examples.py",
"builders/__init__.py",
"builders/ameba.py",
"builders/android.py",
"builders/bl602.py",
"builders/builder.py",
"builders/efr32.py",
"builders/esp32.py",
"builders/gn.py",
"builders/host.py",
"builders/imx.py",
"builders/infineon.py",
"builders/k32w.py",
"builders/mbed.py",
"builders/mw320.py",
"builders/nrf.py",
"builders/qpg.py",
"builders/telink.py",
"builders/tizen.py",
"runner/__init__.py",
"runner/printonly.py",
"runner/shell.py",
]
tests = [
"test.py",
"test_glob_matcher.py",
]
}