14
14
15
15
import (" //build_overrides/chip.gni" )
16
16
import (" //build_overrides/nlio.gni" )
17
+ import (" ${ chip_root } /src/platform/device.gni" )
17
18
18
19
import (" ${ chip_root } /build/chip/buildconfig_header.gni" )
19
20
import (" common_flags.gni" )
@@ -50,6 +51,7 @@ buildconfig_header("app_buildconfig") {
50
51
" CHIP_CONFIG_IM_FORCE_FABRIC_QUOTA_CHECK=${ chip_im_force_fabric_quota_check } " ,
51
52
" CHIP_CONFIG_ENABLE_SESSION_RESUMPTION=${ chip_enable_session_resumption } " ,
52
53
" CHIP_CONFIG_ACCESS_CONTROL_POLICY_LOGGING_VERBOSITY=${ chip_access_control_policy_logging_verbosity } " ,
54
+ " CHIP_CONFIG_PERSIST_SUBSCRIPTIONS=${ chip_persist_subscriptions } " ,
53
55
]
54
56
}
55
57
@@ -173,8 +175,6 @@ static_library("app") {
173
175
" ReadHandler.cpp" ,
174
176
" RequiredPrivilege.cpp" ,
175
177
" RequiredPrivilege.h" ,
176
- " SimpleSubscriptionResumptionStorage.cpp" ,
177
- " SimpleSubscriptionResumptionStorage.h" ,
178
178
" StatusResponse.cpp" ,
179
179
" StatusResponse.h" ,
180
180
" SubscriptionResumptionStorage.h" ,
@@ -189,6 +189,13 @@ static_library("app") {
189
189
" reporting/reporting.h" ,
190
190
]
191
191
192
+ if (chip_persist_subscriptions ) {
193
+ sources += [
194
+ " SimpleSubscriptionResumptionStorage.cpp" ,
195
+ " SimpleSubscriptionResumptionStorage.h" ,
196
+ ]
197
+ }
198
+
192
199
public_deps = [
193
200
" :app_config" ,
194
201
" ${ chip_root } /src/access" ,
0 commit comments