Skip to content

Commit 55ada8b

Browse files
authored
Remove dependency on src/lib/address_resolve from platform (project-chip#30617)
* Remove dependency on src/lib/address_resolve from platform * Restyle * Fix quorvo
1 parent 1bb4be5 commit 55ada8b

File tree

10 files changed

+1
-75
lines changed

10 files changed

+1
-75
lines changed

src/platform/Infineon/CYW30739/BUILD.gn

-8
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,6 @@ static_library("CYW30739") {
8383
"ThreadStackManagerImpl.h",
8484
]
8585

86-
# TODO: platform should NOT depend on default_address_resolve_config. This should
87-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
88-
#
89-
# Currently this exists because OpenThread platform includes src/app/Server.h
90-
public_configs = [
91-
"${chip_root}/src/lib/address_resolve:default_address_resolve_config",
92-
]
93-
9486
deps += [
9587
"${chip_root}/third_party/openthread/platforms:libopenthread-platform",
9688
]

src/platform/bouffalolab/BL702/BUILD.gn

-8
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,6 @@ static_library("BL702") {
101101
]
102102
deps += [ "${chip_root}/src/lib/dnssd:platform_header" ]
103103
}
104-
105-
# TODO: platform should NOT depend on default_address_resolve_config. This should
106-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
107-
#
108-
# Currently this exists because OpenThread platform includes src/app/Server.h
109-
public_configs = [
110-
"${chip_root}/src/lib/address_resolve:default_address_resolve_config",
111-
]
112104
}
113105

114106
if (chip_enable_ethernet) {

src/platform/bouffalolab/BL702L/BUILD.gn

-8
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,6 @@ static_library("BL702L") {
8888
]
8989
deps += [ "${chip_root}/src/lib/dnssd:platform_header" ]
9090
}
91-
92-
# TODO: platform should NOT depend on default_address_resolve_config. This should
93-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
94-
#
95-
# Currently this exists because OpenThread platform includes src/app/Server.h
96-
public_configs = [
97-
"${chip_root}/src/lib/address_resolve:default_address_resolve_config",
98-
]
9991
}
10092

10193
deps += [ "${chip_root}/src/credentials:credentials_header" ]

src/platform/cc13xx_26xx/cc13x2_26x2/BUILD.gn

-7
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ static_library("cc13x2_26x2") {
5353
"${chip_root}/src/platform:platform_base",
5454
]
5555

56-
# TODO: platform should NOT depend on default_address_resolve_config. This should
57-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
58-
#
59-
# Currently this exists because OpenThread platform includes src/app/Server.h
60-
public_configs =
61-
[ "${chip_root}/src/lib/address_resolve:default_address_resolve_config" ]
62-
6356
if (chip_enable_ble) {
6457
sources += [
6558
"../BLEManagerImpl.cpp",

src/platform/cc13xx_26xx/cc13x4_26x4/BUILD.gn

-7
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ static_library("cc13x4_26x4") {
5353
"${chip_root}/src/platform:platform_base",
5454
]
5555

56-
# TODO: platform should NOT depend on default_address_resolve_config. This should
57-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
58-
#
59-
# Currently this exists because OpenThread platform includes src/app/Server.h
60-
public_configs =
61-
[ "${chip_root}/src/lib/address_resolve:default_address_resolve_config" ]
62-
6356
if (chip_enable_ble) {
6457
sources += [
6558
"../BLEManagerImpl.cpp",

src/platform/nxp/k32w/k32w0/BUILD.gn

-8
Original file line numberDiff line numberDiff line change
@@ -140,14 +140,6 @@ static_library("k32w0") {
140140
]
141141
deps += [ "${chip_root}/src/lib/dnssd:platform_header" ]
142142
}
143-
144-
# TODO: platform should NOT depend on default_address_resolve_config. This should
145-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
146-
#
147-
# Currently this exists because OpenThread platform includes src/app/Server.h
148-
public_configs = [
149-
"${chip_root}/src/lib/address_resolve:default_address_resolve_config",
150-
]
151143
}
152144

153145
public_deps += [ "${chip_root}/src/crypto" ]

src/platform/nxp/k32w/k32w1/BUILD.gn

-7
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,4 @@ static_library("k32w1") {
106106
}
107107

108108
public_deps += [ "${chip_root}/src/crypto" ]
109-
110-
# TODO: platform should NOT depend on default_address_resolve_config. This should
111-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
112-
#
113-
# Currently this exists because OpenThread platform includes src/app/Server.h
114-
public_configs =
115-
[ "${chip_root}/src/lib/address_resolve:default_address_resolve_config" ]
116109
}

src/platform/nxp/rt/rw61x/BUILD.gn

+1-9
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,5 @@ static_library("nxp_platform") {
144144
"${chip_root}/src/platform:syscalls_stub",
145145
]
146146

147-
public_configs = [
148-
":nxp_platform_config",
149-
150-
# TODO: platform should NOT depend on default_address_resolve_config. This should
151-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
152-
#
153-
# Currently this exists because OpenThread platform includes src/app/Server.h
154-
"${chip_root}/src/lib/address_resolve:default_address_resolve_config",
155-
]
147+
public_configs = [ ":nxp_platform_config" ]
156148
}

src/platform/qpg/BUILD.gn

-5
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,8 @@ static_library("qpg") {
7070
public_deps += [ "${openthread_root}:libopenthread-mtd" ]
7171
}
7272

73-
# TODO: platform should NOT depend on default_address_resolve_config. This should
74-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
75-
#
76-
# Currently this exists because OpenThread platform includes src/app/Server.h
7773
public_configs += [
7874
"${chip_root}/third_party/openthread/platforms/qpg:openthread_qpg_config",
79-
"${chip_root}/src/lib/address_resolve:default_address_resolve_config",
8075
]
8176

8277
sources += [

src/platform/stm32/BUILD.gn

-8
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,6 @@ static_library("stm32") {
8989
public_deps += [ "${stm32_sdk_build_root}:stm32_sdk" ]
9090

9191
deps += [ "${chip_root}/src/lib/dnssd:platform_header" ]
92-
93-
# TODO: platform should NOT depend on default_address_resolve_config. This should
94-
# be removed. See https://github.com/project-chip/connectedhomeip/issues/30596
95-
#
96-
# Currently this exists because OpenThread platform includes src/app/Server.h
97-
public_configs = [
98-
"${chip_root}/src/lib/address_resolve:default_address_resolve_config",
99-
]
10092
}
10193

10294
# Set the compiler flags

0 commit comments

Comments
 (0)