Carlos Chinchilla | 7b463a6 | 2020-08-20 14:26:35 -0700 | [diff] [blame] | 1 | # Copyright 2020 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 | |
| 15 | buildconfig = "//BUILDCONFIG.gn" |
Armando Montanez | 3b10461 | 2021-02-24 11:18:50 -0800 | [diff] [blame] | 16 | |
| 17 | default_args = { |
| 18 | # Set the nanopb directory for protobuf generation. |
| 19 | dir_pw_third_party_nanopb = "//third_party/nanopb" |
Anthony DiGirolamo | b3f23f1 | 2022-03-17 14:57:35 -0700 | [diff] [blame] | 20 | |
Anthony DiGirolamo | 0f2b29a | 2022-08-24 19:48:17 +0000 | [diff] [blame] | 21 | # Default gn build virtualenv target. |
| 22 | pw_build_PYTHON_BUILD_VENV = "//:sample_project_build_venv" |
Anthony DiGirolamo | 701489b | 2023-08-24 01:01:42 +0000 | [diff] [blame] | 23 | |
| 24 | pw_build_PIP_REQUIREMENTS = [ "//docs/requirements.txt" ] |
Armando Montanez | 7babcfc | 2023-09-11 23:12:29 +0000 | [diff] [blame] | 25 | |
Armando Montanez | aaa1770 | 2024-03-20 17:31:36 +0000 | [diff] [blame] | 26 | pw_build_TEST_TRANSITIVE_PYTHON_DEPS = false |
| 27 | |
Alexei Frolov | a704b20 | 2024-10-31 16:54:17 +0000 | [diff] [blame] | 28 | # Don't allow a plain .options file extension for pwpb protos. |
| 29 | pw_protobuf_compiler_NO_GENERIC_OPTIONS_FILES = true |
| 30 | |
Armando Montanez | 7babcfc | 2023-09-11 23:12:29 +0000 | [diff] [blame] | 31 | dir_pw_third_party_freertos = "//third_party/FreeRTOS" |
| 32 | dir_pw_third_party_stm32cube_f4 = "//third_party/stm32cube_f4" |
Anthony DiGirolamo | a3fa049 | 2023-09-13 16:41:15 +0000 | [diff] [blame] | 33 | PICO_SRC_DIR = "//third_party/pico_sdk" |
Armando Montanez | 3b10461 | 2021-02-24 11:18:50 -0800 | [diff] [blame] | 34 | } |