From 4e980927c363fcc76ed9c6f9e2ac71224d8651ca Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Tue, 7 Feb 2023 09:35:51 -0500 Subject: [PATCH] Stop requiring openssl to bootstrap. Bootstrap seems to do something with chip_crypto as part ofthe bootstrap process. Have it use the already-available boringssl for that instead of requiring an external openssl. Fixes https://github.com/project-chip/connectedhomeip/issues/24897 --- scripts/environment.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/environment.json b/scripts/environment.json index a4bd51be5f2f52..d9dabb8c96affa 100644 --- a/scripts/environment.json +++ b/scripts/environment.json @@ -9,7 +9,8 @@ "gn_root": ".", "gn_targets": [":python_packages.install"], "requirements": ["scripts/requirements.txt"], - "constraints": ["scripts/constraints.txt"] + "constraints": ["scripts/constraints.txt"], + "gn_args": ["chip_crypto=\"boringssl\""] }, "required_submodules": ["third_party/pigweed/repo"], "rosetta": "never",