Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
725474c6
Commit
725474c6
authored
Nov 17, 2015
by
krisgiesing
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #416 from krisgiesing/run_mojo_fix
Allow flutter engine path to be set when using run_mojo
parents
3350c0c3
95a2af8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
5 deletions
+27
-5
run_mojo.dart
packages/flutter_tools/lib/src/commands/run_mojo.dart
+27
-5
No files found.
packages/flutter_tools/lib/src/commands/run_mojo.dart
View file @
725474c6
...
...
@@ -5,17 +5,17 @@
import
'dart:async'
;
import
'dart:io'
;
import
'package:args/command_runner.dart'
;
import
'package:logging/logging.dart'
;
import
'package:path/path.dart'
as
path
;
import
'../artifacts.dart'
;
import
'../build_configuration.dart'
;
import
'../process.dart'
;
import
'flutter_command.dart'
;
final
Logger
_logging
=
new
Logger
(
'flutter_tools.run_mojo'
);
class
RunMojoCommand
extends
Command
{
class
RunMojoCommand
extends
Flutter
Command
{
final
String
name
=
'run_mojo'
;
final
String
description
=
'Run a Flutter app in mojo.'
;
...
...
@@ -30,6 +30,8 @@ class RunMojoCommand extends Command {
argParser
.
addOption
(
'devtools-path'
,
help:
'Path to mojo devtools
\'
mojo_run command.'
);
}
bool
get
requiresProjectRoot
=>
false
;
// TODO(abarth): Why not use path.absolute?
String
_makePathAbsolute
(
String
relativePath
)
{
File
file
=
new
File
(
relativePath
);
...
...
@@ -58,6 +60,18 @@ class RunMojoCommand extends Command {
return
_makePathAbsolute
(
path
.
join
(
argResults
[
'mojo-path'
],
'out'
,
mojoBuildType
,
'mojo_shell'
));
}
BuildConfiguration
_getCurrentHostConfig
()
{
BuildConfiguration
result
;
TargetPlatform
target
=
getCurrentHostPlatformAsTarget
();
for
(
BuildConfiguration
config
in
buildConfigurations
)
{
if
(
config
.
targetPlatform
==
target
)
{
result
=
config
;
break
;
}
}
return
result
;
}
Future
<
List
<
String
>>
_getShellConfig
()
async
{
List
<
String
>
args
=
[];
...
...
@@ -77,8 +91,15 @@ class RunMojoCommand extends Command {
args
.
add
(
'--url-mappings=mojo:sky_viewer=http://sky_viewer/sky_viewer.mojo'
);
}
else
{
final
appPath
=
_makePathAbsolute
(
argResults
[
'app'
]);
Artifact
artifact
=
ArtifactStore
.
getArtifact
(
type:
ArtifactType
.
viewer
,
targetPlatform:
TargetPlatform
.
linux
);
final
viewerPath
=
_makePathAbsolute
(
await
ArtifactStore
.
getPath
(
artifact
));
String
viewerPath
;
BuildConfiguration
config
=
_getCurrentHostConfig
();
if
(
config
.
type
==
BuildType
.
prebuilt
)
{
Artifact
artifact
=
ArtifactStore
.
getArtifact
(
type:
ArtifactType
.
viewer
,
targetPlatform:
TargetPlatform
.
linux
);
viewerPath
=
_makePathAbsolute
(
await
ArtifactStore
.
getPath
(
artifact
));
}
else
{
String
localPath
=
path
.
join
(
config
.
buildDir
,
'sky_viewer.mojo'
);
viewerPath
=
_makePathAbsolute
(
localPath
);
}
args
.
add
(
'file://
$appPath
'
);
args
.
add
(
'--url-mappings=mojo:sky_viewer=file://
$viewerPath
'
);
}
...
...
@@ -104,7 +125,7 @@ class RunMojoCommand extends Command {
}
@override
Future
<
int
>
run
()
async
{
Future
<
int
>
run
InProject
()
async
{
if
((
argResults
[
'mojo-path'
]
==
null
&&
argResults
[
'devtools-path'
]
==
null
)
||
(
argResults
[
'mojo-path'
]
!=
null
&&
argResults
[
'devtools-path'
]
!=
null
))
{
_logging
.
severe
(
'Must specify either --mojo-path or --devtools-path.'
);
return
1
;
...
...
@@ -117,4 +138,5 @@ class RunMojoCommand extends Command {
return
await
runCommandAndStreamOutput
(
await
_getShellConfig
());
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment