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
b4e379ad
Commit
b4e379ad
authored
Oct 01, 2016
by
P.Y. Laligand
Committed by
GitHub
Oct 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Goodbye "build mojo", we hardly knew ye. (#6162)
parent
928d49dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
80 deletions
+0
-80
build.dart
packages/flutter_tools/lib/src/commands/build.dart
+0
-2
build_mojo.dart
packages/flutter_tools/lib/src/commands/build_mojo.dart
+0
-78
No files found.
packages/flutter_tools/lib/src/commands/build.dart
View file @
b4e379ad
...
...
@@ -15,7 +15,6 @@ import 'build_apk.dart';
import
'build_aot.dart'
;
import
'build_flx.dart'
;
import
'build_ios.dart'
;
import
'build_mojo.dart'
;
class
BuildCommand
extends
FlutterCommand
{
BuildCommand
({
bool
verboseHelp:
false
})
{
...
...
@@ -24,7 +23,6 @@ class BuildCommand extends FlutterCommand {
addSubcommand
(
new
BuildCleanCommand
());
addSubcommand
(
new
BuildIOSCommand
());
addSubcommand
(
new
BuildFlxCommand
(
verboseHelp:
verboseHelp
));
addSubcommand
(
new
BuildMojoCommand
());
}
@override
...
...
packages/flutter_tools/lib/src/commands/build_mojo.dart
deleted
100644 → 0
View file @
928d49dc
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:async'
;
import
'../flx.dart'
;
import
'../globals.dart'
;
import
'build.dart'
;
const
String
_kOptionSnapshotter
=
'snapshotter-path'
;
const
String
_kOptionTarget
=
'target'
;
const
String
_kOptionPackages
=
'packages'
;
const
String
_kOptionOutput
=
'output-file'
;
const
String
_kOptionSnapshot
=
'snapshot'
;
const
String
_kOptionDepfile
=
'depfile'
;
const
String
_kOptionWorking
=
'working-dir'
;
const
List
<
String
>
_kOptions
=
const
<
String
>[
_kOptionSnapshotter
,
_kOptionTarget
,
_kOptionPackages
,
_kOptionOutput
,
_kOptionSnapshot
,
_kOptionDepfile
,
_kOptionWorking
];
class
BuildMojoCommand
extends
BuildSubCommand
{
BuildMojoCommand
({
bool
verboseHelp:
false
})
{
argParser
.
addOption
(
_kOptionSnapshotter
,
help:
'The snapshotter executable'
);
argParser
.
addOption
(
_kOptionTarget
,
help:
'The entry point into the app'
);
argParser
.
addOption
(
_kOptionPackages
,
help:
'The .packages file'
);
argParser
.
addOption
(
_kOptionOutput
,
help:
'The generated flx file'
);
argParser
.
addOption
(
_kOptionSnapshot
,
help:
'The generated snapshot file'
);
argParser
.
addOption
(
_kOptionDepfile
,
help:
'The generated dependency file'
);
argParser
.
addOption
(
_kOptionWorking
,
help:
'The directory where to put temporary files'
);
commandValidator
=
()
=>
true
;
}
@override
final
String
name
=
'mojo'
;
@override
final
String
description
=
'Build a Flutter FLX file for Mojo.'
;
@override
final
String
usageFooter
=
'FLX files are archives of your application code and resources; '
'they are used by the Flutter content handler.'
;
@override
Future
<
int
>
runCommand
()
async
{
await
super
.
runCommand
();
if
(
_kOptions
.
any
((
String
option
)
=>
!
argResults
.
options
.
contains
(
option
)))
{
printError
(
'Missing option! All options must be specified.'
);
return
1
;
}
String
outputPath
=
argResults
[
_kOptionOutput
];
return
await
build
(
snapshotterPath:
argResults
[
_kOptionSnapshotter
],
mainPath:
argResults
[
_kOptionTarget
],
outputPath:
outputPath
,
snapshotPath:
argResults
[
_kOptionSnapshot
],
depfilePath:
argResults
[
_kOptionDepfile
],
workingDirPath:
argResults
[
_kOptionWorking
],
packagesPath:
argResults
[
_kOptionPackages
],
includeRobotoFonts:
true
,
).
then
((
int
result
)
{
if
(
result
!=
0
)
{
printError
(
'Error building
$outputPath
:
$result
.'
);
}
return
result
;
});
}
}
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