Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian-Nordic committed Dec 7, 2022
1 parent 2de8a4a commit 848ae87
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/crypto/crypto.gni
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ declare_args() {
chip_external_mbedtls = false
}

assert(!chip_external_mbedtls || chip_crypto == "mbedtls",
"Use of external mbedtls requires the mbedtls crypto impl")
assert(
!chip_external_mbedtls || chip_crypto == "mbedtls" || chip_crypto == "psa",
"Use of external mbedtls requires the mbedtls or psa crypto impl")

0 comments on commit 848ae87

Please sign in to comment.