blob: d2c97e188192edbfbdc04fe97c84e688e0ab6bff [file] [log] [blame]
Michael Spangefa630b2020-07-08 22:23:08 -04001# Copyright (c) 2020 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")
Boris Zbarsky5d663262020-08-27 18:12:39 -040016import("//build_overrides/nlio.gni")
Michael Spange00eac32021-06-21 17:25:47 -040017import("${chip_root}/build/chip/buildconfig_header.gni")
yunhanw-googlef4735792023-10-24 20:42:50 -070018import("${chip_root}/src/lib/core/core.gni")
yunhanw-google6e3d0452023-09-15 19:32:28 -070019import("${chip_root}/src/platform/device.gni")
Song Guoa77a6622021-01-29 13:13:02 +080020import("common_flags.gni")
mkardous-silabs98282932023-06-05 14:13:46 -040021import("icd/icd.gni")
Michael Spangefa630b2020-07-08 22:23:08 -040022
yunhanw-googled644bb02021-04-13 07:26:17 -070023declare_args() {
24 # Enable strict schema checks.
yunhanw-google751d0dd2022-11-16 19:09:58 -080025 enable_im_pretty_print =
Boris Zbarskyc17d7232022-09-09 12:56:27 -040026 is_debug && (current_os == "linux" || current_os == "mac" ||
27 current_os == "ios" || current_os == "android")
Tennessee Carmel-Veilleux085acd02022-04-13 23:42:22 -040028
29 # Logging verbosity control for Access Control implementation
30 #
31 # If set to > 0, it is desired to get additional logging on all
32 # access control checks for better debugging ability.
33 #
34 # If set to > 1, it is desired to log every single check
35 chip_access_control_policy_logging_verbosity = 0
36 if (is_debug && (current_os == "linux" || current_os == "mac")) {
37 chip_access_control_policy_logging_verbosity = 2
38 }
39
Zang MingJie7dede202022-04-06 11:54:50 +080040 chip_enable_session_resumption = true
Song GUO077e44e2022-04-25 10:16:30 +080041
42 # By default, the resources used by each fabric is unlimited if they are allocated on heap. This flag is for checking the resource usage even when they are allocated on heap to increase code coverage in integration tests.
43 chip_im_force_fabric_quota_check = false
Evgeny Margolisb89e83b2023-02-24 18:20:02 -100044
Andrei Litvin7baabb72023-07-28 13:47:45 -040045 enable_eventlist_attribute = false
yunhanw-googled644bb02021-04-13 07:26:17 -070046}
47
Michael Spange00eac32021-06-21 17:25:47 -040048buildconfig_header("app_buildconfig") {
49 header = "AppBuildConfig.h"
50 header_dir = "app"
51
Zang MingJie7dede202022-04-06 11:54:50 +080052 defines = [
yunhanw-google751d0dd2022-11-16 19:09:58 -080053 "CHIP_CONFIG_IM_PRETTY_PRINT=${enable_im_pretty_print}",
Song GUO077e44e2022-04-25 10:16:30 +080054 "CHIP_CONFIG_IM_FORCE_FABRIC_QUOTA_CHECK=${chip_im_force_fabric_quota_check}",
Zang MingJie7dede202022-04-06 11:54:50 +080055 "CHIP_CONFIG_ENABLE_SESSION_RESUMPTION=${chip_enable_session_resumption}",
Tennessee Carmel-Veilleux085acd02022-04-13 23:42:22 -040056 "CHIP_CONFIG_ACCESS_CONTROL_POLICY_LOGGING_VERBOSITY=${chip_access_control_policy_logging_verbosity}",
Jeff Tung19cb1a52023-01-26 05:56:05 -080057 "CHIP_CONFIG_PERSIST_SUBSCRIPTIONS=${chip_persist_subscriptions}",
Jeff Tungc1ec2d72023-07-22 10:33:06 -070058 "CHIP_CONFIG_SUBSCRIPTION_TIMEOUT_RESUMPTION=${chip_subscription_timeout_resumption}",
Evgeny Margolisb89e83b2023-02-24 18:20:02 -100059 "CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE=${enable_eventlist_attribute}",
Wang Qixiang14bdc242023-08-04 13:04:55 +080060 "CHIP_CONFIG_ENABLE_READ_CLIENT=${chip_enable_read_client}",
Zang MingJie7dede202022-04-06 11:54:50 +080061 ]
Michael Spangc6b6fb32023-11-17 02:21:20 -050062
63 visibility = [ ":app_config" ]
Michael Spangefa630b2020-07-08 22:23:08 -040064}
65
mkardous-silabsb8db5ee2024-01-25 15:05:17 -050066source_set("app_config") {
67 sources = [ "AppConfig.h" ]
68
69 deps = [ ":app_buildconfig" ]
70}
71
Terence Hampson4460db12023-11-15 11:21:03 -050072source_set("revision_info") {
73 sources = [
74 "DataModelRevision.h",
75 "InteractionModelRevision.h",
76 "SpecificationVersion.h",
77 ]
78}
79
mkardous-silabsb8db5ee2024-01-25 15:05:17 -050080source_set("paths") {
81 sources = [
82 "AttributePathParams.h",
83 "ConcreteClusterPath.h",
84 "ConcreteEventPath.h",
85 "DataVersionFilter.h",
86 "EventPathParams.h",
87 ]
Daniel Nicoara641e3ad2022-07-25 15:32:03 -040088
mkardous-silabsb8db5ee2024-01-25 15:05:17 -050089 # This source sets also depends on basic-types.h that is not in any dependency we can use
90 public_deps = [
91 ":app_config",
92 "${chip_root}/src/lib/core",
93 ]
Daniel Nicoara641e3ad2022-07-25 15:32:03 -040094}
95
mkardous-silabsb8db5ee2024-01-25 15:05:17 -050096source_set("global-attributes") {
97 sources = [ "GlobalAttributes.h" ]
Michael Spangefa630b2020-07-08 22:23:08 -040098
mkardous-silabsb8db5ee2024-01-25 15:05:17 -050099 # This also depends on zap-generated code which is currently impossible to split outs
100 public_deps = [ "${chip_root}/src/lib/support" ]
101}
102
103source_set("pre-encoded-value") {
Michael Spangefa630b2020-07-08 22:23:08 -0400104 sources = [
mkardous-silabsb8db5ee2024-01-25 15:05:17 -0500105 "data-model/FabricScopedPreEncodedValue.cpp",
106 "data-model/FabricScopedPreEncodedValue.h",
107 "data-model/PreEncodedValue.cpp",
108 "data-model/PreEncodedValue.h",
109 ]
110
111 deps = [
112 "${chip_root}/src/lib/core",
113 "${chip_root}/src/lib/support",
114 ]
115}
116
117source_set("message-def") {
118 sources = [
yunhanw-google7898b532021-11-01 09:52:46 -0700119 "MessageDef/ArrayBuilder.cpp",
120 "MessageDef/ArrayParser.cpp",
yunhanw-googleb717b362021-11-08 13:34:19 -0800121 "MessageDef/AttributeDataIB.cpp",
122 "MessageDef/AttributeDataIB.h",
123 "MessageDef/AttributeDataIBs.cpp",
124 "MessageDef/AttributeDataIBs.h",
yunhanw-google64ffda02021-11-04 18:05:36 -0700125 "MessageDef/AttributePathIB.cpp",
126 "MessageDef/AttributePathIB.h",
yunhanw-googleb717b362021-11-08 13:34:19 -0800127 "MessageDef/AttributePathIBs.cpp",
128 "MessageDef/AttributePathIBs.h",
129 "MessageDef/AttributeReportIB.cpp",
130 "MessageDef/AttributeReportIB.h",
131 "MessageDef/AttributeReportIBs.cpp",
132 "MessageDef/AttributeReportIBs.h",
yunhanw-google35e67172021-10-11 17:12:06 -0700133 "MessageDef/AttributeStatusIB.cpp",
134 "MessageDef/AttributeStatusIB.h",
yunhanw-googlef1117272021-12-02 19:59:44 -0800135 "MessageDef/AttributeStatusIBs.cpp",
136 "MessageDef/AttributeStatusIBs.h",
yunhanw-google0c183552021-01-22 09:12:14 -0800137 "MessageDef/Builder.cpp",
138 "MessageDef/Builder.h",
yunhanw-googlea1cb3412021-12-06 13:32:40 -0800139 "MessageDef/ClusterPathIB.cpp",
140 "MessageDef/ClusterPathIB.h",
yunhanw-google67f74a32021-10-21 12:15:08 -0700141 "MessageDef/CommandDataIB.cpp",
yunhanw-google8c2638c2021-10-20 16:33:42 -0700142 "MessageDef/CommandPathIB.cpp",
yunhanw-google36e61e32021-11-02 08:31:34 -0700143 "MessageDef/CommandStatusIB.cpp",
yunhanw-googlea1cb3412021-12-06 13:32:40 -0800144 "MessageDef/DataVersionFilterIB.cpp",
145 "MessageDef/DataVersionFilterIB.h",
146 "MessageDef/DataVersionFilterIBs.cpp",
147 "MessageDef/DataVersionFilterIBs.h",
yunhanw-google3bec0f92021-11-03 16:12:39 -0700148 "MessageDef/EventDataIB.cpp",
149 "MessageDef/EventDataIB.h",
yunhanw-googlebf585f82021-10-29 19:20:07 -0700150 "MessageDef/EventFilterIB.cpp",
yunhanw-googlef1117272021-12-02 19:59:44 -0800151 "MessageDef/EventFilterIBs.cpp",
yunhanw-google2fe90242021-11-01 15:13:44 -0700152 "MessageDef/EventPathIB.cpp",
153 "MessageDef/EventPathIB.h",
yunhanw-googlef1117272021-12-02 19:59:44 -0800154 "MessageDef/EventPathIBs.cpp",
155 "MessageDef/EventPathIBs.h",
yunhanw-google3bec0f92021-11-03 16:12:39 -0700156 "MessageDef/EventReportIB.cpp",
157 "MessageDef/EventReportIB.h",
yunhanw-googlef1117272021-12-02 19:59:44 -0800158 "MessageDef/EventReportIBs.cpp",
159 "MessageDef/EventReportIBs.h",
yunhanw-google1f6c6e62021-11-02 10:09:53 -0700160 "MessageDef/EventStatusIB.cpp",
161 "MessageDef/EventStatusIB.h",
yunhanw-google36e61e32021-11-02 08:31:34 -0700162 "MessageDef/InvokeRequestMessage.cpp",
163 "MessageDef/InvokeRequests.cpp",
164 "MessageDef/InvokeResponseIB.cpp",
yunhanw-googlef1117272021-12-02 19:59:44 -0800165 "MessageDef/InvokeResponseIBs.cpp",
yunhanw-google36e61e32021-11-02 08:31:34 -0700166 "MessageDef/InvokeResponseMessage.cpp",
yunhanw-google0c183552021-01-22 09:12:14 -0800167 "MessageDef/ListBuilder.cpp",
yunhanw-google0c183552021-01-22 09:12:14 -0800168 "MessageDef/ListParser.cpp",
yunhanw-google86b7b7f2022-01-28 16:53:51 -0800169 "MessageDef/MessageBuilder.cpp",
170 "MessageDef/MessageBuilder.h",
yunhanw-googlee4c01152021-04-16 08:22:10 -0700171 "MessageDef/MessageDefHelper.cpp",
yunhanw-google0c183552021-01-22 09:12:14 -0800172 "MessageDef/MessageDefHelper.h",
yunhanw-google86b7b7f2022-01-28 16:53:51 -0800173 "MessageDef/MessageParser.cpp",
174 "MessageDef/MessageParser.h",
yunhanw-google0c183552021-01-22 09:12:14 -0800175 "MessageDef/Parser.cpp",
176 "MessageDef/Parser.h",
yunhanw-google12ec7022021-11-01 19:53:29 -0700177 "MessageDef/ReadRequestMessage.cpp",
178 "MessageDef/ReadRequestMessage.h",
179 "MessageDef/ReportDataMessage.cpp",
180 "MessageDef/ReportDataMessage.h",
yunhanw-google35e67172021-10-11 17:12:06 -0700181 "MessageDef/StatusIB.cpp",
182 "MessageDef/StatusIB.h",
yunhanw-google12ec7022021-11-01 19:53:29 -0700183 "MessageDef/StatusResponseMessage.cpp",
yunhanw-google7898b532021-11-01 09:52:46 -0700184 "MessageDef/StructBuilder.cpp",
185 "MessageDef/StructParser.cpp",
yunhanw-google12ec7022021-11-01 19:53:29 -0700186 "MessageDef/SubscribeRequestMessage.cpp",
187 "MessageDef/SubscribeResponseMessage.cpp",
yunhanw-google7f05fb62021-10-29 06:55:58 -0700188 "MessageDef/TimedRequestMessage.cpp",
yunhanw-google12ec7022021-11-01 19:53:29 -0700189 "MessageDef/WriteRequestMessage.cpp",
190 "MessageDef/WriteResponseMessage.cpp",
mkardous-silabsb8db5ee2024-01-25 15:05:17 -0500191 ]
192
193 deps = [
194 ":app_config",
195 ":paths",
196 ":revision_info",
197 "${chip_root}/src/lib/core",
198 "${chip_root}/src/lib/support",
199 "${chip_root}/src/protocols/interaction_model",
200 "${chip_root}/src/protocols/secure_channel",
201 ]
202}
203
204config("config-controller-dynamic-server") {
205 defines = [
206 "CHIP_CONFIG_SKIP_APP_SPECIFIC_GENERATED_HEADER_INCLUDES=1",
207 "CHIP_DEVICE_CONFIG_DYNAMIC_ENDPOINT_COUNT=1",
208 ]
209}
210
211# interaction-model is a static-library because it currently requires global functions (app/util/...) that are stubbed in different test files that depend on the app static_library
212# which in tern depens on the interaction-model.
213# Using source_set prevents the unit test to build correctly.
214static_library("interaction-model") {
215 sources = [
216 "CASEClient.cpp",
217 "CASEClient.h",
218 "CASEClientPool.h",
219 "CASESessionManager.cpp",
220 "CASESessionManager.h",
221 "DeviceProxy.cpp",
222 "DeviceProxy.h",
223 "InteractionModelEngine.cpp",
224 "InteractionModelEngine.h",
225 "InteractionModelTimeout.h",
Terence Hampsonb6859d72022-08-05 13:48:11 -0400226 "OperationalSessionSetup.cpp",
227 "OperationalSessionSetup.h",
228 "OperationalSessionSetupPool.h",
Marc Lepage2c4de1b2022-01-27 13:25:46 -0500229 "RequiredPrivilege.cpp",
230 "RequiredPrivilege.h",
yunhanw-googleb5dbad12021-11-16 16:46:37 -0800231 "StatusResponse.cpp",
232 "StatusResponse.h",
Jeff Tung37919a12023-01-20 17:58:51 -0800233 "SubscriptionResumptionStorage.h",
Boris Zbarskyffee2a92021-12-01 14:34:57 -0500234 "TimedHandler.cpp",
235 "TimedHandler.h",
yunhanw-googlededd3d02021-04-08 05:51:34 -0700236 "reporting/Engine.cpp",
Michael Spanga08f8262021-04-23 18:06:20 -0400237 "reporting/Engine.h",
lpbeliveau-silabsedbdf8a2023-07-13 12:20:44 -0400238 "reporting/ReportScheduler.h",
239 "reporting/ReportSchedulerImpl.cpp",
240 "reporting/ReportSchedulerImpl.h",
lpbeliveau-silabsd44f7892023-07-19 18:17:12 -0400241 "reporting/SynchronizedReportSchedulerImpl.cpp",
242 "reporting/SynchronizedReportSchedulerImpl.h",
Boris Zbarsky95d337c2022-11-18 01:30:16 -0500243 "reporting/reporting.h",
Michael Spangefa630b2020-07-08 22:23:08 -0400244 ]
245
mkardous-silabsb8db5ee2024-01-25 15:05:17 -0500246 public_deps = [
247 ":app_config",
248 ":message-def",
249 ":paths",
250 "${chip_root}/src/app/icd:icd_config",
251 "${chip_root}/src/app/icd:observer",
252 "${chip_root}/src/lib/address_resolve",
253 "${chip_root}/src/lib/support",
254 "${chip_root}/src/protocols/interaction_model",
255 "${chip_root}/src/protocols/secure_channel",
256 "${chip_root}/src/system",
257 ]
258
259 public_configs = [ "${chip_root}/src:includes" ]
260
Jeff Tung19cb1a52023-01-26 05:56:05 -0800261 if (chip_persist_subscriptions) {
262 sources += [
263 "SimpleSubscriptionResumptionStorage.cpp",
264 "SimpleSubscriptionResumptionStorage.h",
mkardous-silabsb8db5ee2024-01-25 15:05:17 -0500265 "SubscriptionResumptionSessionEstablisher.cpp",
266 "SubscriptionResumptionSessionEstablisher.h",
Jeff Tung19cb1a52023-01-26 05:56:05 -0800267 ]
268 }
269
yunhanw-google6e3d0452023-09-15 19:32:28 -0700270 if (chip_build_controller_dynamic_server) {
yunhanw-google6e3d0452023-09-15 19:32:28 -0700271 sources += [
272 "clusters/ota-provider/ota-provider.cpp",
273 "dynamic_server/AccessControl.cpp",
274 "dynamic_server/AccessControl.h",
275 "dynamic_server/DynamicDispatcher.cpp",
276 "util/privilege-storage.cpp",
277 "util/privilege-storage.h",
278 ]
yunhanw-google6e3d0452023-09-15 19:32:28 -0700279
mkardous-silabsb8db5ee2024-01-25 15:05:17 -0500280 public_deps += [
281 ":global-attributes",
282 "${chip_root}/src/access",
Wang Qixiang371756b2024-01-05 04:46:39 +0800283 ]
mkardous-silabsb8db5ee2024-01-25 15:05:17 -0500284
285 public_configs += [ ":config-controller-dynamic-server" ]
Wang Qixiang371756b2024-01-05 04:46:39 +0800286 }
mkardous-silabsb8db5ee2024-01-25 15:05:17 -0500287}
288
289# Note to developpers, instead of continuously adding files in the app librabry, it is recommand to create smaller source_sets that app can depend on.
290# This way, we can have a better understanding of dependencies and other componenets can depend on the different source_sets without needing to depend on the entire app library.
291static_library("app") {
292 output_name = "libCHIPDataModel"
293
294 sources = [
295 "AttributeAccessInterface.cpp",
296 "AttributePathExpandIterator.cpp",
297 "AttributePathExpandIterator.h",
298 "AttributePersistenceProvider.h",
299 "ChunkedWriteCallback.cpp",
300 "ChunkedWriteCallback.h",
301 "CommandHandler.cpp",
302 "CommandResponseHelper.h",
303 "CommandResponseSender.cpp",
304 "CommandSender.cpp",
305 "DefaultAttributePersistenceProvider.cpp",
306 "DefaultAttributePersistenceProvider.h",
307 "DeferredAttributePersistenceProvider.cpp",
308 "DeferredAttributePersistenceProvider.h",
309 "EventManagement.cpp",
310 "FailSafeContext.cpp",
311 "FailSafeContext.h",
312 "OTAUserConsentCommon.h",
313 "ReadHandler.cpp",
314 "SafeAttributePersistenceProvider.h",
315 "TimedRequest.cpp",
316 "TimedRequest.h",
317 "TimerDelegates.cpp",
318 "TimerDelegates.h",
319 "WriteClient.cpp",
320 "WriteHandler.cpp",
321 ]
322
323 public_deps = [
324 ":app_config",
325 ":global-attributes",
326 ":interaction-model",
327 ":pre-encoded-value",
328 ":revision_info",
329 "${chip_root}/src/app/icd:icd_config",
330 "${chip_root}/src/lib/address_resolve",
331 "${chip_root}/src/lib/support",
332 "${chip_root}/src/messaging",
333 "${chip_root}/src/protocols/interaction_model",
334 "${chip_root}/src/system",
335 "${nlio_root}:nlio",
336 ]
Wang Qixiang371756b2024-01-05 04:46:39 +0800337
Wang Qixiang14bdc242023-08-04 13:04:55 +0800338 if (chip_enable_read_client) {
339 sources += [
340 "BufferedReadCallback.cpp",
341 "ClusterStateCache.cpp",
342 "ClusterStateCache.h",
343 "ReadClient.cpp",
344 ]
345 }
346
mkardous-silabs98282932023-06-05 14:13:46 -0400347 if (chip_enable_icd_server) {
mkardous-silabsa9d5b1a2023-11-28 12:50:44 -0500348 public_deps += [
349 "${chip_root}/src/app/icd:manager",
350 "${chip_root}/src/app/icd:notifier",
351 ]
mkardous-silabs98282932023-06-05 14:13:46 -0400352 }
353
Boris Zbarsky46c78302020-09-24 15:57:57 -0400354 cflags = [ "-Wconversion" ]
355
Michael Spange00eac32021-06-21 17:25:47 -0400356 public_configs = [ "${chip_root}/src:includes" ]
Michael Spangefa630b2020-07-08 22:23:08 -0400357}