@@ -140,23 +140,35 @@ static_library("interaction-model") {
140
140
" CASEClientPool.h" ,
141
141
" CASESessionManager.cpp" ,
142
142
" CASESessionManager.h" ,
143
+ " CommandSender.cpp" ,
144
+ " CommandSender.h" ,
143
145
" DeviceProxy.cpp" ,
144
146
" DeviceProxy.h" ,
145
147
" InteractionModelDelegatePointers.cpp" ,
146
148
" InteractionModelDelegatePointers.h" ,
147
149
" InteractionModelEngine.cpp" ,
148
150
" InteractionModelEngine.h" ,
151
+ " InteractionModelHelper.h" ,
149
152
" InteractionModelTimeout.h" ,
150
153
" OperationalSessionSetup.cpp" ,
151
154
" OperationalSessionSetup.h" ,
152
155
" OperationalSessionSetupPool.h" ,
156
+ " PendingResponseTracker.h" ,
157
+ " PendingResponseTrackerImpl.cpp" ,
158
+ " PendingResponseTrackerImpl.h" ,
159
+ " ReadClient.h" , # TODO: cpp is only included conditionally. Needs logic
160
+ # fixing
153
161
" RequiredPrivilege.cpp" ,
154
162
" RequiredPrivilege.h" ,
155
163
" StatusResponse.cpp" ,
156
164
" StatusResponse.h" ,
157
165
" SubscriptionResumptionStorage.h" ,
158
166
" TimedHandler.cpp" ,
159
167
" TimedHandler.h" ,
168
+ " TimedRequest.cpp" ,
169
+ " TimedRequest.h" ,
170
+ " WriteClient.cpp" ,
171
+ " WriteClient.h" ,
160
172
" reporting/Engine.cpp" ,
161
173
" reporting/Engine.h" ,
162
174
" reporting/ReportScheduler.h" ,
@@ -184,6 +196,10 @@ static_library("interaction-model") {
184
196
185
197
public_configs = [ " ${ chip_root } /src:includes" ]
186
198
199
+ if (chip_enable_read_client ) {
200
+ sources += [ " ReadClient.cpp" ]
201
+ }
202
+
187
203
if (chip_persist_subscriptions ) {
188
204
sources += [
189
205
" SimpleSubscriptionResumptionStorage.cpp" ,
@@ -228,7 +244,6 @@ static_library("app") {
228
244
" CommandResponseHelper.h" ,
229
245
" CommandResponseSender.cpp" ,
230
246
" CommandResponseSender.h" ,
231
- " CommandSender.cpp" ,
232
247
" DefaultAttributePersistenceProvider.cpp" ,
233
248
" DefaultAttributePersistenceProvider.h" ,
234
249
" DeferredAttributePersistenceProvider.cpp" ,
@@ -240,26 +255,17 @@ static_library("app") {
240
255
" FailSafeContext.cpp" ,
241
256
" FailSafeContext.h" ,
242
257
" OTAUserConsentCommon.h" ,
243
- " PendingResponseTracker.h" ,
244
- " PendingResponseTrackerImpl.cpp" ,
245
- " PendingResponseTrackerImpl.h" ,
246
258
" ReadHandler.cpp" ,
247
259
" SafeAttributePersistenceProvider.h" ,
248
- " TimedRequest.cpp" ,
249
- " TimedRequest.h" ,
250
260
" TimerDelegates.cpp" ,
251
261
" TimerDelegates.h" ,
252
- " WriteClient.cpp" ,
253
262
" WriteHandler.cpp" ,
254
263
255
264
# TODO: the following items cannot be included due to interaction-model circularity
256
265
# (app depending on im and im including these headers):
257
266
# Name with _ so that linter does not recognize it
258
267
# "CommandHandler._h"
259
- # "CommandSender._h",
260
- # "ReadClient._h",
261
268
# "ReadHandler._h",
262
- # "WriteClient._h",
263
269
# "WriteHandler._h"
264
270
265
271
# TODO: the following items cannot be included due to platform includes not being
@@ -288,10 +294,6 @@ static_library("app") {
288
294
" BufferedReadCallback.h" ,
289
295
" ClusterStateCache.cpp" ,
290
296
" ClusterStateCache.h" ,
291
- " ReadClient.cpp" ,
292
-
293
- # TODO: cannot include "ReadClient._h" because interaction-model backreference
294
- # Name with _ so that linter does not recognize it
295
297
]
296
298
}
297
299
0 commit comments