Skip to content

Commit 3e65d28

Browse files
Fix build issue
rename gn source-set to match header
1 parent bb407fe commit 3e65d28

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/app/BUILD.gn

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ source_set("global-attributes") {
120120
]
121121
}
122122

123-
source_set("subscription-manager") {
123+
source_set("subscription-info-provider") {
124124
sources = [ "SubscriptionsInfoProvider.h" ]
125125

126126
public_deps = [ "${chip_root}/src/lib/core" ]
@@ -198,7 +198,7 @@ static_library("interaction-model") {
198198
":app_config",
199199
":constants",
200200
":paths",
201-
":subscription-manager",
201+
":subscription-info-provider",
202202
"${chip_root}/src/app/MessageDef",
203203
"${chip_root}/src/app/icd/server:icd-server-config",
204204
"${chip_root}/src/app/icd/server:observer",

src/app/icd/server/BUILD.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ source_set("manager") {
7575
":configuration-data",
7676
":notifier",
7777
":observer",
78+
"${chip_root}/src/app:subscription-info-provider",
7879
"${chip_root}/src/credentials:credentials",
7980
"${chip_root}/src/messaging",
8081
]
@@ -84,7 +85,6 @@ source_set("manager") {
8485
":monitoring-table",
8586
":sender",
8687
"${chip_root}/src/app:app_config",
87-
"${chip_root}/src/app:subscription-manager",
8888
]
8989
}
9090
}

src/app/icd/server/ICDManager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
#include <app/icd/server/ICDServerConfig.h>
2222

2323
#if CHIP_CONFIG_ENABLE_ICD_CIP
24-
#include <app/SubscriptionsInfoProvider.h> // nogncheck
2524
#include <app/icd/server/ICDCheckInSender.h> // nogncheck
2625
#include <app/icd/server/ICDMonitoringTable.h> // nogncheck
2726
#endif // CHIP_CONFIG_ENABLE_ICD_CIP
2827

28+
#include <app/SubscriptionsInfoProvider.h>
2929
#include <app/icd/server/ICDConfigurationData.h>
3030
#include <app/icd/server/ICDNotifier.h>
3131
#include <app/icd/server/ICDStateObserver.h>

0 commit comments

Comments
 (0)