Skip to content

Commit

Permalink
Only build //sky/shell on Mac and iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
chinmaygarde committed Jul 20, 2015
1 parent bf8957f commit 72032a6
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@
group("default") {
testonly = true

deps = [
"//sky",
"//services/sky",
]
if (is_ios || is_mac) {
deps = [
"//sky/shell",
]
} else {
deps = [
"//sky",
"//services/sky",
]
}
}

0 comments on commit 72032a6

Please sign in to comment.