Yufeng Wang | 3fe770c | 2024-05-14 19:19:49 +0000 | [diff] [blame] | 1 | # Copyright (c) 2024 Project CHIP Authors |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://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, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | import("//build_overrides/chip.gni") |
| 16 | |
| 17 | import("${chip_root}/config/standalone/args.gni") |
| 18 | |
| 19 | chip_device_project_config_include = "<CHIPProjectAppConfig.h>" |
| 20 | chip_project_config_include = "<CHIPProjectAppConfig.h>" |
| 21 | chip_system_project_config_include = "<SystemProjectConfig.h>" |
| 22 | |
| 23 | chip_project_config_include_dirs = |
| 24 | [ "${chip_root}/examples/fabric-admin/include" ] |
| 25 | chip_project_config_include_dirs += [ "${chip_root}/config/standalone" ] |
| 26 | |
| 27 | matter_enable_tracing_support = true |
| 28 | |
| 29 | matter_log_json_payload_hex = true |
| 30 | matter_log_json_payload_decode_full = true |
| 31 | |
| 32 | # make fabric-admin very strict by default |
| 33 | chip_tlv_validate_char_string_on_read = true |
| 34 | chip_tlv_validate_char_string_on_write = true |
Yufeng Wang | d31cb54 | 2024-07-03 05:54:59 -0700 | [diff] [blame] | 35 | chip_enable_ble = true |