From 5c8ae45f7ab4f3bbb631eed8c43a51d81f42ca6b Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Mon, 6 Feb 2023 05:45:31 -0500 Subject: [PATCH] Add a default group to example apps build (#24852) --- examples/lock-app/linux/BUILD.gn | 4 ++++ examples/log-source-app/linux/BUILD.gn | 4 ++++ examples/ota-provider-app/linux/BUILD.gn | 4 ++++ examples/ota-requestor-app/linux/BUILD.gn | 4 ++++ examples/persistent-storage/linux/BUILD.gn | 4 ++++ examples/placeholder/linux/BUILD.gn | 4 ++++ examples/thermostat/linux/BUILD.gn | 4 ++++ examples/tv-app/linux/BUILD.gn | 4 ++++ examples/tv-casting-app/linux/BUILD.gn | 4 ++++ 9 files changed, 36 insertions(+) diff --git a/examples/lock-app/linux/BUILD.gn b/examples/lock-app/linux/BUILD.gn index 189d37306e5548..fc4bc76d9c8b2f 100644 --- a/examples/lock-app/linux/BUILD.gn +++ b/examples/lock-app/linux/BUILD.gn @@ -44,3 +44,7 @@ executable("chip-lock-app") { group("linux") { deps = [ ":chip-lock-app" ] } + +group("default") { + deps = [ ":linux" ] +} diff --git a/examples/log-source-app/linux/BUILD.gn b/examples/log-source-app/linux/BUILD.gn index 3fa9dc2e1a8c61..4cc6b31dbe97d8 100644 --- a/examples/log-source-app/linux/BUILD.gn +++ b/examples/log-source-app/linux/BUILD.gn @@ -34,3 +34,7 @@ executable("chip-log-source-app") { group("linux") { deps = [ ":chip-log-source-app" ] } + +group("default") { + deps = [ ":linux" ] +} diff --git a/examples/ota-provider-app/linux/BUILD.gn b/examples/ota-provider-app/linux/BUILD.gn index 366605c5181a83..de0be92c3cb8a8 100644 --- a/examples/ota-provider-app/linux/BUILD.gn +++ b/examples/ota-provider-app/linux/BUILD.gn @@ -35,3 +35,7 @@ executable("chip-ota-provider-app") { group("linux") { deps = [ ":chip-ota-provider-app" ] } + +group("default") { + deps = [ ":linux" ] +} diff --git a/examples/ota-requestor-app/linux/BUILD.gn b/examples/ota-requestor-app/linux/BUILD.gn index 2d698377703640..9122ce765031a6 100644 --- a/examples/ota-requestor-app/linux/BUILD.gn +++ b/examples/ota-requestor-app/linux/BUILD.gn @@ -33,3 +33,7 @@ executable("chip-ota-requestor-app") { group("linux") { deps = [ ":chip-ota-requestor-app" ] } + +group("default") { + deps = [ ":linux" ] +} diff --git a/examples/persistent-storage/linux/BUILD.gn b/examples/persistent-storage/linux/BUILD.gn index 33e0cc449a779b..e01cc757180484 100644 --- a/examples/persistent-storage/linux/BUILD.gn +++ b/examples/persistent-storage/linux/BUILD.gn @@ -32,3 +32,7 @@ executable("persistent_storage") { group("linux") { deps = [ ":persistent_storage" ] } + +group("default") { + deps = [ ":linux" ] +} diff --git a/examples/placeholder/linux/BUILD.gn b/examples/placeholder/linux/BUILD.gn index 6b956056c3bc98..92c568d5ffc744 100644 --- a/examples/placeholder/linux/BUILD.gn +++ b/examples/placeholder/linux/BUILD.gn @@ -70,3 +70,7 @@ executable("chip-${chip_tests_zap_config}") { group("linux") { deps = [ ":chip-${chip_tests_zap_config}" ] } + +group("default") { + deps = [ ":linux" ] +} diff --git a/examples/thermostat/linux/BUILD.gn b/examples/thermostat/linux/BUILD.gn index 2d1d13374a9dc1..89d24bff8a0835 100644 --- a/examples/thermostat/linux/BUILD.gn +++ b/examples/thermostat/linux/BUILD.gn @@ -36,3 +36,7 @@ executable("thermostat-app") { group("linux") { deps = [ ":thermostat-app" ] } + +group("default") { + deps = [ ":linux" ] +} diff --git a/examples/tv-app/linux/BUILD.gn b/examples/tv-app/linux/BUILD.gn index 945473c835c1b4..6485f72d9b05dd 100644 --- a/examples/tv-app/linux/BUILD.gn +++ b/examples/tv-app/linux/BUILD.gn @@ -94,3 +94,7 @@ executable("chip-tv-app") { group("linux") { deps = [ ":chip-tv-app" ] } + +group("default") { + deps = [ ":linux" ] +} diff --git a/examples/tv-casting-app/linux/BUILD.gn b/examples/tv-casting-app/linux/BUILD.gn index df8cac35cd5a3d..0f6f12c50dd022 100644 --- a/examples/tv-casting-app/linux/BUILD.gn +++ b/examples/tv-casting-app/linux/BUILD.gn @@ -54,3 +54,7 @@ executable("chip-tv-casting-app") { group("linux") { deps = [ ":chip-tv-casting-app" ] } + +group("default") { + deps = [ ":linux" ] +}