From 041e7b67b8c1f1f0eb0d361813d42ba1319c8351 Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Tue, 2 Feb 2021 21:36:46 -0500 Subject: [PATCH] Add builds missing from "default" group in unified (#4573) Currently enabling certain builds and running: ninja -C out/debug does not build them. This means we can end up building nothing at all, which is fairly confusing. They will however be built if you run either: ninja -C out/debug all ninja -C out/debug Add the missing deps to the default target so that all opted in configs are built with the first command. Co-authored-by: Justin Wood --- BUILD.gn | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index ba676c6008b923..d653baa0a2dc24 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -311,9 +311,18 @@ if (current_toolchain != "${dir_pw_toolchain}/dummy:dummy") { if (enable_efr32_lock_app_build) { deps += [ ":efr32_lock_app" ] } + if (enable_efr32_lighting_app_build) { + deps += [ ":efr32_lighting_app" ] + } if (enable_k32w_lock_app_build) { deps += [ ":k32w_lock_app" ] } + if (enable_qpg6100_lock_app_build) { + deps += [ ":qpg6100_lock_app" ] + } + if (enable_cc13x2_26x2_lock_app_build) { + deps += [ ":cc13x2_26x2_lock_app" ] + } } group("check") {