Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 72032a6

Browse files
committed
Only build //sky/shell on Mac and iOS
1 parent bf8957f commit 72032a6

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

BUILD.gn

+10-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@
66
group("default") {
77
testonly = true
88

9-
deps = [
10-
"//sky",
11-
"//services/sky",
12-
]
9+
if (is_ios || is_mac) {
10+
deps = [
11+
"//sky/shell",
12+
]
13+
} else {
14+
deps = [
15+
"//sky",
16+
"//services/sky",
17+
]
18+
}
1319
}

0 commit comments

Comments
 (0)