Skip to content

Commit 1497404

Browse files
andy31415pull[bot]
authored andcommitted
Add a default group to example apps build (#24852)
1 parent 559e441 commit 1497404

File tree

9 files changed

+36
-0
lines changed

9 files changed

+36
-0
lines changed

examples/lock-app/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,7 @@ executable("chip-lock-app") {
4444
group("linux") {
4545
deps = [ ":chip-lock-app" ]
4646
}
47+
48+
group("default") {
49+
deps = [ ":linux" ]
50+
}

examples/log-source-app/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,7 @@ executable("chip-log-source-app") {
3434
group("linux") {
3535
deps = [ ":chip-log-source-app" ]
3636
}
37+
38+
group("default") {
39+
deps = [ ":linux" ]
40+
}

examples/ota-provider-app/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,7 @@ executable("chip-ota-provider-app") {
3535
group("linux") {
3636
deps = [ ":chip-ota-provider-app" ]
3737
}
38+
39+
group("default") {
40+
deps = [ ":linux" ]
41+
}

examples/ota-requestor-app/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,7 @@ executable("chip-ota-requestor-app") {
3333
group("linux") {
3434
deps = [ ":chip-ota-requestor-app" ]
3535
}
36+
37+
group("default") {
38+
deps = [ ":linux" ]
39+
}

examples/persistent-storage/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,7 @@ executable("persistent_storage") {
3232
group("linux") {
3333
deps = [ ":persistent_storage" ]
3434
}
35+
36+
group("default") {
37+
deps = [ ":linux" ]
38+
}

examples/placeholder/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,7 @@ executable("chip-${chip_tests_zap_config}") {
7070
group("linux") {
7171
deps = [ ":chip-${chip_tests_zap_config}" ]
7272
}
73+
74+
group("default") {
75+
deps = [ ":linux" ]
76+
}

examples/thermostat/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,7 @@ executable("thermostat-app") {
3636
group("linux") {
3737
deps = [ ":thermostat-app" ]
3838
}
39+
40+
group("default") {
41+
deps = [ ":linux" ]
42+
}

examples/tv-app/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,7 @@ executable("chip-tv-app") {
9494
group("linux") {
9595
deps = [ ":chip-tv-app" ]
9696
}
97+
98+
group("default") {
99+
deps = [ ":linux" ]
100+
}

examples/tv-casting-app/linux/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,7 @@ executable("chip-tv-casting-app") {
5454
group("linux") {
5555
deps = [ ":chip-tv-casting-app" ]
5656
}
57+
58+
group("default") {
59+
deps = [ ":linux" ]
60+
}

0 commit comments

Comments
 (0)