We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f8e73c commit 658f1aeCopy full SHA for 658f1ae
src/lib/BUILD.gn
@@ -57,13 +57,10 @@ source_set("base") {
57
}
58
59
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
- }
+ public_deps = [
+ ":base",
+ "${chip_root}/src/platform/logging:default",
+ ]
67
68
output_name = "libCHIP"
69
@@ -72,6 +69,7 @@ static_library("lib") {
72
complete_static_lib = true
73
70
74
71
+# This version of libCHIP is only meant for interal use by some test drivers
75
static_library("lib_using_stdio") {
76
public_deps = [
77
":base",
0 commit comments