blob: 63c91c70c209cdd785effa283f4ee44a54acacfc [file] [log] [blame]
Yufeng Wang3fe770c2024-05-14 19:19:49 +00001# 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
15import("//build_overrides/chip.gni")
16
17import("${chip_root}/config/standalone/args.gni")
18
19chip_device_project_config_include = "<CHIPProjectAppConfig.h>"
20chip_project_config_include = "<CHIPProjectAppConfig.h>"
21chip_system_project_config_include = "<SystemProjectConfig.h>"
22
23chip_project_config_include_dirs =
24 [ "${chip_root}/examples/fabric-admin/include" ]
25chip_project_config_include_dirs += [ "${chip_root}/config/standalone" ]
26
27matter_enable_tracing_support = true
28
29matter_log_json_payload_hex = true
30matter_log_json_payload_decode_full = true
31
32# make fabric-admin very strict by default
33chip_tlv_validate_char_string_on_read = true
34chip_tlv_validate_char_string_on_write = true
Yufeng Wangd31cb542024-07-03 05:54:59 -070035chip_enable_ble = true