Skip to content

Commit 658f1ae

Browse files
committed
Update src/lib/BUILD.gn
1 parent 9f8e73c commit 658f1ae

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/lib/BUILD.gn

+5-7
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,10 @@ source_set("base") {
5757
}
5858

5959
static_library("lib") {
60-
public_deps = [ ":base" ]
61-
62-
if (chip_device_platform == "darwin") {
63-
public_deps += [ "${chip_root}/src/platform/logging:stdio" ]
64-
} else {
65-
public_deps += [ "${chip_root}/src/platform/logging:default" ]
66-
}
60+
public_deps = [
61+
":base",
62+
"${chip_root}/src/platform/logging:default",
63+
]
6764

6865
output_name = "libCHIP"
6966

@@ -72,6 +69,7 @@ static_library("lib") {
7269
complete_static_lib = true
7370
}
7471

72+
# This version of libCHIP is only meant for interal use by some test drivers
7573
static_library("lib_using_stdio") {
7674
public_deps = [
7775
":base",

0 commit comments

Comments
 (0)