File tree 3 files changed +10
-1
lines changed
examples/tv-casting-app/android
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 95
95
--known-failure app/CommandHandler.h \
96
96
--known-failure app/CommandHandlerInterface.h \
97
97
--known-failure app/CommandSenderLegacyCallback.h \
98
- --known-failure app/data-model/ListLargeSystemExtensions.h \
99
98
--known-failure app/ReadHandler.h \
100
99
--known-failure app/reporting/reporting.cpp \
101
100
--known-failure app/reporting/tests/MockReportScheduler.cpp \
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ shared_library("jni") {
53
53
54
54
deps = [
55
55
" ${ chip_root } /examples/tv-casting-app/tv-casting-common" ,
56
+ " ${ chip_root } /src/app/data-model:heap" ,
56
57
" ${ chip_root } /src/app/server/java:jni" ,
57
58
" ${ chip_root } /src/lib" ,
58
59
" ${ chip_root } /third_party/inipp" ,
Original file line number Diff line number Diff line change @@ -45,3 +45,12 @@ source_set("data-model") {
45
45
" ${ chip_root } /src/protocols/interaction_model" ,
46
46
]
47
47
}
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
+ }
You can’t perform that action at this time.
0 commit comments