Skip to content

Commit

Permalink
Move flutter_*_runner to /system/bin (flutter#4286)
Browse files Browse the repository at this point in the history
Previously, these binaries were in /system/apps, which is going away. Also,
rename flutter_runner to flutter_jit_runner to match flutter_aot_runner.
  • Loading branch information
abarth authored Oct 31, 2017
1 parent 5b3e178 commit 58fc251
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ if (is_fuchsia) {
import("//packages/package.gni")

package("package") {
app = true
testonly = true

package_name = "flutter"
Expand All @@ -75,7 +74,7 @@ if (is_fuchsia) {

binaries = [
{
name = "flutter_runner"
name = "flutter_jit_runner"
},
{
name = "flutter_aot_runner"
Expand Down
2 changes: 1 addition & 1 deletion build/flutter_app.gni
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ template("flutter_jit_app") {
"--depfile",
rebase_path(bundle_depfile),
"--interpreter",
"flutter_runner",
"flutter_jit_runner",
]
if (defined(invoker.manifest)) {
args += [
Expand Down
2 changes: 1 addition & 1 deletion content_handler/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ template("flutter_content_handler") {
}

flutter_content_handler("content_handler") {
output_name = "flutter_runner"
output_name = "flutter_jit_runner"
extra_deps = [ "//third_party/dart/runtime:libdart_jit" ]
}

Expand Down

0 comments on commit 58fc251

Please sign in to comment.