Skip to content

Commit

Permalink
Don't build sky_snapshot for target
Browse files Browse the repository at this point in the history
  • Loading branch information
abarth committed Aug 11, 2016
1 parent 0a54524 commit d07eb00
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
group("flutter") {
testonly = true

deps = [
"//flutter/assets",
"//flutter/flow",
"//flutter/glue",
"//flutter/snapshotter",
]

if (!is_fuchsia) {
deps += [
if (is_fuchsia) {
# TODO(abarth) Remove this specific list once Fuchsia can build everything.
deps = [
"//flutter/snapshotter",
"//flutter/assets",
"//flutter/flow",
"//flutter/glue",
]
} else {
deps = [
"//flutter/sky",
]
}
Expand Down

0 comments on commit d07eb00

Please sign in to comment.