Skip to content

Commit

Permalink
Allow to build chip-cert with boringssl
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
agners committed Apr 29, 2024
1 parent 7bd2409 commit 9106e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/chip/tools.gni
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ declare_args() {
chip_build_tools = current_os != "freertos" && current_os != "android" &&
chip_device_platform != "fake"
chip_can_build_cert_tool =
chip_crypto == "openssl" ||
chip_crypto == "openssl" || chip_crypto == "boringssl" ||
(chip_crypto == "" &&
(current_os != "android" && current_os != "freertos" &&
current_os != "zephyr" && current_os != "mbed" &&
Expand Down

0 comments on commit 9106e17

Please sign in to comment.