Skip to content

Commit

Permalink
Get Fuchsia build past gn gen (flutter#2896)
Browse files Browse the repository at this point in the history
  • Loading branch information
abarth authored Aug 10, 2016
1 parent 726acc5 commit 1761ed1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
23 changes: 17 additions & 6 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@
# This target will be built if no target is specified when invoking ninja.
group("flutter") {
testonly = true

deps = [
"//flutter/sky",
"//flutter/glue",
]

if (!is_fuchsia) {
deps += [
"//flutter/sky",
]
}

if (is_ios) {
deps += [
"//flutter/services/dynamic:sdk_lib_archive",
Expand All @@ -17,10 +24,14 @@ group("flutter") {
}
}

group("dist") {
testonly = true
if (!is_fuchsia) {

group("dist") {
testonly = true

deps = [
"//flutter/sky/dist",
]
}

deps = [
"//flutter/sky/dist",
]
}
10 changes: 8 additions & 2 deletions glue/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,15 @@ source_set("glue") {
]

deps = [
"//base",
"//lib/ftl",
"//mojo/data_pipe_utils",
"//mojo/public/cpp/environment",
"//mojo/public/cpp/system",
]

if (!is_fuchsia) {
deps += [
"//base",
"//mojo/data_pipe_utils",
]
}
}

0 comments on commit 1761ed1

Please sign in to comment.