File tree 3 files changed +17
-3
lines changed
3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -101,10 +101,8 @@ jobs:
101
101
--known-failure app/reporting/tests/MockReportScheduler.h \
102
102
--known-failure app/TestEventTriggerDelegate.h \
103
103
--known-failure app/util/af.h \
104
- --known-failure app/util/af-types.h \
105
104
--known-failure app/util/attribute-storage.cpp \
106
105
--known-failure app/util/attribute-storage.h \
107
- --known-failure app/util/attribute-storage-null-handling.h \
108
106
--known-failure app/util/attribute-table.cpp \
109
107
--known-failure app/util/attribute-table.h \
110
108
--known-failure app/util/binding-table.cpp \
@@ -118,7 +116,6 @@ jobs:
118
116
--known-failure app/util/generic-callback-stubs.cpp \
119
117
--known-failure app/util/im-client-callbacks.h \
120
118
--known-failure app/util/MatterCallbacks.h \
121
- --known-failure app/util/odd-sized-integers.h \
122
119
--known-failure app/util/util.cpp \
123
120
--known-failure app/util/util.h \
124
121
--known-failure app/WriteHandler.h \
Original file line number Diff line number Diff line change @@ -202,6 +202,7 @@ static_library("interaction-model") {
202
202
" ${ chip_root } /src/app/MessageDef" ,
203
203
" ${ chip_root } /src/app/icd/server:icd-server-config" ,
204
204
" ${ chip_root } /src/app/icd/server:observer" ,
205
+ " ${ chip_root } /src/app/util:af-types" ,
205
206
" ${ chip_root } /src/lib/address_resolve" ,
206
207
" ${ chip_root } /src/lib/support" ,
207
208
" ${ chip_root } /src/lib/support:static-support" ,
Original file line number Diff line number Diff line change 15
15
import (" //build_overrides/chip.gni" )
16
16
import (" ${ chip_root } /src/app/common_flags.gni" )
17
17
18
+ # These headers/cpp only depend on core/common
18
19
source_set (" types" ) {
19
20
sources = [
20
21
" att-storage.h" ,
21
22
" attribute-metadata.cpp" ,
22
23
" attribute-metadata.h" ,
24
+ " attribute-storage-null-handling.h" ,
23
25
" basic-types.h" ,
24
26
" ember-strings.cpp" ,
25
27
" ember-strings.h" ,
26
28
" endpoint-config-defines.h" ,
29
+ " odd-sized-integers.h" ,
27
30
" types_stub.h" ,
28
31
]
29
32
30
33
deps = [
31
34
" ${ chip_root } /src/app/common:attribute-type" ,
35
+ " ${ chip_root } /src/lib/core" ,
32
36
" ${ chip_root } /src/lib/core:encoding" ,
33
37
" ${ chip_root } /src/lib/core:types" ,
34
38
]
35
39
public_configs = [ " ${ chip_root } /src:includes" ]
36
40
}
41
+
42
+ # This source set also depends on data-model
43
+ source_set (" af-types" ) {
44
+ sources = [ " af-types.h" ]
45
+ deps = [
46
+ " :types" ,
47
+ " ${ chip_root } /src/app:paths" ,
48
+ " ${ chip_root } /src/app/data-model" ,
49
+ " ${ chip_root } /src/messaging" ,
50
+ " ${ chip_root } /src/protocols/interaction_model" ,
51
+ ]
52
+ }
You can’t perform that action at this time.
0 commit comments