Skip to content

Commit

Permalink
Add a default group to example apps build (project-chip#24852)
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 authored and David Lechner committed Mar 22, 2023
1 parent f5132ce commit 3c671c4
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/lock-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ executable("chip-lock-app") {
group("linux") {
deps = [ ":chip-lock-app" ]
}

group("default") {
deps = [ ":linux" ]
}
4 changes: 4 additions & 0 deletions examples/log-source-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ executable("chip-log-source-app") {
group("linux") {
deps = [ ":chip-log-source-app" ]
}

group("default") {
deps = [ ":linux" ]
}
4 changes: 4 additions & 0 deletions examples/ota-provider-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ executable("chip-ota-provider-app") {
group("linux") {
deps = [ ":chip-ota-provider-app" ]
}

group("default") {
deps = [ ":linux" ]
}
4 changes: 4 additions & 0 deletions examples/ota-requestor-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ executable("chip-ota-requestor-app") {
group("linux") {
deps = [ ":chip-ota-requestor-app" ]
}

group("default") {
deps = [ ":linux" ]
}
4 changes: 4 additions & 0 deletions examples/persistent-storage/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ executable("persistent_storage") {
group("linux") {
deps = [ ":persistent_storage" ]
}

group("default") {
deps = [ ":linux" ]
}
4 changes: 4 additions & 0 deletions examples/placeholder/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,7 @@ executable("chip-${chip_tests_zap_config}") {
group("linux") {
deps = [ ":chip-${chip_tests_zap_config}" ]
}

group("default") {
deps = [ ":linux" ]
}
4 changes: 4 additions & 0 deletions examples/thermostat/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ executable("thermostat-app") {
group("linux") {
deps = [ ":thermostat-app" ]
}

group("default") {
deps = [ ":linux" ]
}
4 changes: 4 additions & 0 deletions examples/tv-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,7 @@ executable("chip-tv-app") {
group("linux") {
deps = [ ":chip-tv-app" ]
}

group("default") {
deps = [ ":linux" ]
}
4 changes: 4 additions & 0 deletions examples/tv-casting-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ executable("chip-tv-casting-app") {
group("linux") {
deps = [ ":chip-tv-casting-app" ]
}

group("default") {
deps = [ ":linux" ]
}

0 comments on commit 3c671c4

Please sign in to comment.