We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc07297 commit 5a8756dCopy full SHA for 5a8756d
src/crypto/BUILD.gn
@@ -25,6 +25,8 @@ if (chip_crypto == "") {
25
current_os == "zephyr" || current_os == "mbed" || current_os == "webos" ||
26
current_os == "cmsis-rtos") {
27
chip_crypto = "mbedtls"
28
+ } else if (current_os == "mac" || current_os == "ios") {
29
+ chip_crypto = "boringssl"
30
} else {
31
chip_crypto = "openssl"
32
}
src/tools/chip-cert/BUILD.gn
@@ -37,7 +37,9 @@ executable("chip-cert") {
37
"chip-cert.h",
38
]
39
40
- public_configs = [ "${chip_root}/src/crypto:openssl_config" ]
+ if (chip_crypto == "openssl") {
41
+ public_configs = [ "${chip_root}/src/crypto:openssl_config" ]
42
+ }
43
44
cflags = [ "-Wconversion" ]
45
0 commit comments