Skip to content

Commit 853b94c

Browse files
committed
Fix darwin
1 parent b0a1058 commit 853b94c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/platform/Darwin/BUILD.gn

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ static_library("logging") {
151151
sources = [
152152
"Logging.h",
153153
"Logging.mm",
154+
"LoggingImpl.cpp",
154155
]
155156

156157
deps = [

src/platform/logging/BUILD.gn

+1-6
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,7 @@ static_library("default") {
6262
} else if (chip_device_platform == "qpg") {
6363
deps += [ "${chip_root}/src/platform/qpg:logging" ]
6464
} else if (chip_device_platform == "darwin") {
65-
sources = [ "${chip_root}/src/platform/Darwin/LoggingImpl.cpp" ]
66-
deps += [
67-
":headers",
68-
"${chip_root}/src/platform:platform_base",
69-
"${chip_root}/src/platform/Darwin:logging",
70-
]
65+
deps += [ "${chip_root}/src/platform/Darwin:logging" ]
7166
} else if (chip_device_platform == "mw320") {
7267
deps += [ "${chip_root}/src/platform/nxp/mw320:logging" ]
7368
} else if (chip_device_platform == "k32w0" ||

0 commit comments

Comments
 (0)