Skip to content

Commit cbdba88

Browse files
authored
Make gn know about ListLargeSystemExtensions.h (#32672)
* Make gn know about ListLargeSystemExtensions.h * Fix linter
1 parent aa9f8e5 commit cbdba88

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.github/workflows/lint.yml

-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ jobs:
9595
--known-failure app/CommandHandler.h \
9696
--known-failure app/CommandHandlerInterface.h \
9797
--known-failure app/CommandSenderLegacyCallback.h \
98-
--known-failure app/data-model/ListLargeSystemExtensions.h \
9998
--known-failure app/ReadHandler.h \
10099
--known-failure app/reporting/reporting.cpp \
101100
--known-failure app/reporting/tests/MockReportScheduler.cpp \

examples/tv-casting-app/android/BUILD.gn

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ shared_library("jni") {
5353

5454
deps = [
5555
"${chip_root}/examples/tv-casting-app/tv-casting-common",
56+
"${chip_root}/src/app/data-model:heap",
5657
"${chip_root}/src/app/server/java:jni",
5758
"${chip_root}/src/lib",
5859
"${chip_root}/third_party/inipp",

src/app/data-model/BUILD.gn

+9
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,12 @@ source_set("data-model") {
4545
"${chip_root}/src/protocols/interaction_model",
4646
]
4747
}
48+
49+
# Provides extensions that use heap and should be
50+
# used for systems that are not as constrained as
51+
# embedded systems typically are
52+
source_set("heap") {
53+
sources = [ "ListLargeSystemExtensions.h" ]
54+
55+
deps = [ ":data-model" ]
56+
}

0 commit comments

Comments
 (0)