Skip to content

Commit

Permalink
Update :dist to actually build sky_services
Browse files Browse the repository at this point in the history
Due to a bad merge, we weren't actually building a distributable version of
the sky_services package.
  • Loading branch information
abarth committed Jul 30, 2015
1 parent 044dd16 commit 7b3797a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions sky/dist/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if (is_android) {
copy_ex("sky_engine") {
clear_dir = true
# Note: The package actually ends up in $root_dist_dir/packages/sky_engine/sky_engine
dest = "$root_dist_dir/packages"
dest = "$root_dist_dir/packages/sky_engine"
sources = [
"$root_gen_dir/dart-pkg/sky_engine",
]
Expand Down Expand Up @@ -86,6 +86,9 @@ group("dist") {
}

if (is_android) {
deps += [ ":sky_engine" ]
deps += [
":sky_engine",
":sky_services",
]
}
}

0 comments on commit 7b3797a

Please sign in to comment.