Skip to content

Commit 9eb2e29

Browse files
authored
Allow to build chip-cert with boringssl (#33226)
Currently when trying to build chip-cert with boringssl gn doesn't generate a ninja target. This is since `chip_can_build_cert_tool` gets set to false. Allow to build with boringssl just like with openssl.
1 parent 6cdb5da commit 9eb2e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/chip/tools.gni

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ declare_args() {
1919
chip_build_tools = current_os != "freertos" && current_os != "android" &&
2020
chip_device_platform != "fake"
2121
chip_can_build_cert_tool =
22-
chip_crypto == "openssl" ||
22+
chip_crypto == "openssl" || chip_crypto == "boringssl" ||
2323
(chip_crypto == "" &&
2424
(current_os != "android" && current_os != "freertos" &&
2525
current_os != "zephyr" && current_os != "mbed" &&

0 commit comments

Comments
 (0)