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
72effdd2
Commit
72effdd2
authored
Mar 29, 2017
by
Jason Simmons
Committed by
GitHub
Mar 29, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Roll the engine and update for new binary names (#9089)
parent
4c530d5e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
engine.version
bin/internal/engine.version
+1
-1
about_test.dart
packages/flutter/test/material/about_test.dart
+1
-1
flutter.gradle
packages/flutter_tools/gradle/flutter.gradle
+2
-2
artifacts.dart
packages/flutter_tools/lib/src/artifacts.dart
+1
-1
cache.dart
packages/flutter_tools/lib/src/cache.dart
+1
-1
artifacts_test.dart
packages/flutter_tools/test/artifacts_test.dart
+2
-2
No files found.
bin/internal/engine.version
View file @
72effdd2
61fc1d6e31ab11752ec13385bd0844702179007
1
bf698a1fe52e62d161c2aab351029670dc9b865
1
packages/flutter/test/material/about_test.dart
View file @
72effdd2
...
...
@@ -69,7 +69,7 @@ void main() {
await
tester
.
pumpWidget
(
new
Material
(
child:
new
AboutListTile
()),
);
expect
(
find
.
text
(
'About
sky_shell
'
),
findsOneWidget
);
expect
(
find
.
text
(
'About
flutter_tester
'
),
findsOneWidget
);
});
testWidgets
(
'AboutListTile control test'
,
(
WidgetTester
tester
)
async
{
...
...
packages/flutter_tools/gradle/flutter.gradle
View file @
72effdd2
...
...
@@ -122,10 +122,10 @@ class FlutterPlugin implements Plugin<Project> {
project
.
tasks
.
create
(
"flutterBuildX86Jar"
,
Jar
)
{
destinationDir
flutterX86Jar
.
parentFile
archiveName
flutterX86Jar
.
name
from
(
"${flutterRoot}/bin/cache/artifacts/engine/android-x86/lib
sky_shell
.so"
)
{
from
(
"${flutterRoot}/bin/cache/artifacts/engine/android-x86/lib
flutter
.so"
)
{
into
"lib/x86"
}
from
(
"${flutterRoot}/bin/cache/artifacts/engine/android-x64/lib
sky_shell
.so"
)
{
from
(
"${flutterRoot}/bin/cache/artifacts/engine/android-x64/lib
flutter
.so"
)
{
into
"lib/x86_64"
}
}
...
...
packages/flutter_tools/lib/src/artifacts.dart
View file @
72effdd2
...
...
@@ -37,7 +37,7 @@ String _artifactToFileName(Artifact artifact) {
case
Artifact
.
genSnapshot
:
return
'gen_snapshot'
;
case
Artifact
.
skyShell
:
return
'
sky_shell
'
;
return
'
flutter_tester
'
;
case
Artifact
.
snapshotDart
:
return
'snapshot.dart'
;
case
Artifact
.
flutterFramework
:
...
...
packages/flutter_tools/lib/src/cache.dart
View file @
72effdd2
...
...
@@ -362,7 +362,7 @@ class FlutterEngine {
for
(
FileSystemEntity
entity
in
dir
.
listSync
())
{
if
(
entity
is
File
)
{
final
String
name
=
fs
.
path
.
basename
(
entity
.
path
);
if
(
name
==
'
sky_shell
'
)
if
(
name
==
'
flutter_tester
'
)
os
.
makeExecutable
(
entity
);
}
}
...
...
packages/flutter_tools/test/artifacts_test.dart
View file @
72effdd2
...
...
@@ -38,7 +38,7 @@ void main() {
expect
(
artifacts
.
getArtifactPath
(
Artifact
.
skyShell
),
fs
.
path
.
join
(
tempDir
.
path
,
'bin'
,
'cache'
,
'artifacts'
,
'engine'
,
'linux-x64'
,
'
sky_shell
'
)
fs
.
path
.
join
(
tempDir
.
path
,
'bin'
,
'cache'
,
'artifacts'
,
'engine'
,
'linux-x64'
,
'
flutter_tester
'
)
);
},
overrides:
<
Type
,
Generator
>
{
Cache:
()
=>
new
Cache
(
rootOverride:
tempDir
),
...
...
@@ -91,7 +91,7 @@ void main() {
expect
(
artifacts
.
getArtifactPath
(
Artifact
.
skyShell
),
fs
.
path
.
join
(
tempDir
.
path
,
'out'
,
'android_debug_unopt'
,
'
sky_shell
'
)
fs
.
path
.
join
(
tempDir
.
path
,
'out'
,
'android_debug_unopt'
,
'
flutter_tester
'
)
);
},
overrides:
<
Type
,
Generator
>
{
Platform:
()
=>
new
FakePlatform
(
operatingSystem:
'linux'
)
...
...
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