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
4a2ed002
Unverified
Commit
4a2ed002
authored
Apr 26, 2022
by
Zachary Anderson
Committed by
GitHub
Apr 26, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] Add entries to HostArtifacts for impellerc, libtessellator (#102593)
parent
dacab7de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
34 deletions
+67
-34
artifacts.dart
packages/flutter_tools/lib/src/artifacts.dart
+59
-34
artifacts_test.dart
...ages/flutter_tools/test/general.shard/artifacts_test.dart
+8
-0
No files found.
packages/flutter_tools/lib/src/artifacts.dart
View file @
4a2ed002
...
...
@@ -92,8 +92,14 @@ enum HostArtifact {
idevicesyslog
,
idevicescreenshot
,
iproxy
,
/// The root of the sky_engine package.
skyEnginePath
,
// The Impeller shader compiler.
impellerc
,
// Impeller's tessellation library.
libtessellator
,
}
// TODO(knopp): Remove once darwin artifacts are universal and moved out of darwin-x64
...
...
@@ -202,8 +208,14 @@ String? _artifactToFileName(Artifact artifact, [ TargetPlatform? platform, Build
}
}
String
_hostArtifactToFileName
(
HostArtifact
artifact
,
bool
windows
)
{
final
String
exe
=
windows
?
'.exe'
:
''
;
String
_hostArtifactToFileName
(
HostArtifact
artifact
,
Platform
platform
)
{
final
String
exe
=
platform
.
isWindows
?
'.exe'
:
''
;
String
dll
=
'.so'
;
if
(
platform
.
isWindows
)
{
dll
=
'.dll'
;
}
else
if
(
platform
.
isMacOS
)
{
dll
=
'.dylib'
;
}
switch
(
artifact
)
{
case
HostArtifact
.
flutterWebSdk
:
return
''
;
...
...
@@ -247,6 +259,10 @@ String _hostArtifactToFileName(HostArtifact artifact, bool windows) {
case
HostArtifact
.
webPrecompiledCanvaskitSoundSdkSourcemaps
:
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSoundSdkSourcemaps
:
return
'dart_sdk.js.map'
;
case
HostArtifact
.
impellerc
:
return
'impellerc
$exe
'
;
case
HostArtifact
.
libtessellator
:
return
'libtessellator
$dll
'
;
}
}
...
...
@@ -337,63 +353,68 @@ class CachedArtifacts implements Artifacts {
final
String
path
=
_dartSdkPath
(
_cache
);
return
_fileSystem
.
directory
(
path
);
case
HostArtifact
.
engineDartBinary
:
final
String
path
=
_fileSystem
.
path
.
join
(
_dartSdkPath
(
_cache
),
'bin'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_dartSdkPath
(
_cache
),
'bin'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
flutterWebSdk
:
final
String
path
=
_getFlutterWebSdkPath
();
return
_fileSystem
.
directory
(
path
);
case
HostArtifact
.
flutterWebLibrariesJson
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPlatformKernelDill
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPlatformSoundKernelDill
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledSdk
:
case
HostArtifact
.
webPrecompiledSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledCanvaskitSdk
:
case
HostArtifact
.
webPrecompiledCanvaskitSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSdk
:
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-html'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-html'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledSoundSdk
:
case
HostArtifact
.
webPrecompiledSoundSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledCanvaskitSoundSdk
:
case
HostArtifact
.
webPrecompiledCanvaskitSoundSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSoundSdk
:
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSoundSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-html-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-html-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
idevicesyslog
:
case
HostArtifact
.
idevicescreenshot
:
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
);
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
);
return
_cache
.
getArtifactDirectory
(
'libimobiledevice'
).
childFile
(
artifactFileName
);
case
HostArtifact
.
skyEnginePath
:
final
Directory
dartPackageDirectory
=
_cache
.
getCacheDir
(
'pkg'
);
final
String
path
=
_fileSystem
.
path
.
join
(
dartPackageDirectory
.
path
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
dartPackageDirectory
.
path
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
directory
(
path
);
case
HostArtifact
.
dart2jsSnapshot
:
case
HostArtifact
.
dartdevcSnapshot
:
case
HostArtifact
.
kernelWorkerSnapshot
:
final
String
path
=
_fileSystem
.
path
.
join
(
_dartSdkPath
(
_cache
),
'bin'
,
'snapshots'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_dartSdkPath
(
_cache
),
'bin'
,
'snapshots'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
iosDeploy
:
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
);
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
);
return
_cache
.
getArtifactDirectory
(
'ios-deploy'
).
childFile
(
artifactFileName
);
case
HostArtifact
.
iproxy
:
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
);
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
);
return
_cache
.
getArtifactDirectory
(
'usbmuxd'
).
childFile
(
artifactFileName
);
case
HostArtifact
.
impellerc
:
case
HostArtifact
.
libtessellator
:
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
);
final
String
engineDir
=
_getEngineArtifactsPath
(
_currentHostPlatform
(
_platform
,
_operatingSystemUtils
))!;
return
_fileSystem
.
file
(
_fileSystem
.
path
.
join
(
engineDir
,
artifactFileName
));
}
}
...
...
@@ -757,67 +778,71 @@ class CachedLocalEngineArtifacts implements LocalEngineArtifacts {
final
String
path
=
_fileSystem
.
path
.
join
(
_hostEngineOutPath
,
'dart-sdk'
);
return
_fileSystem
.
directory
(
path
);
case
HostArtifact
.
engineDartBinary
:
final
String
path
=
_fileSystem
.
path
.
join
(
_hostEngineOutPath
,
'dart-sdk'
,
'bin'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_hostEngineOutPath
,
'dart-sdk'
,
'bin'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
dart2jsSnapshot
:
final
String
path
=
_fileSystem
.
path
.
join
(
_hostEngineOutPath
,
'dart-sdk'
,
'bin'
,
'snapshots'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_hostEngineOutPath
,
'dart-sdk'
,
'bin'
,
'snapshots'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
dartdevcSnapshot
:
final
String
path
=
_fileSystem
.
path
.
join
(
_dartSdkPath
(
_cache
),
'bin'
,
'snapshots'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_dartSdkPath
(
_cache
),
'bin'
,
'snapshots'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
kernelWorkerSnapshot
:
final
String
path
=
_fileSystem
.
path
.
join
(
_hostEngineOutPath
,
'dart-sdk'
,
'bin'
,
'snapshots'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_hostEngineOutPath
,
'dart-sdk'
,
'bin'
,
'snapshots'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
flutterWebSdk
:
final
String
path
=
_getFlutterWebSdkPath
();
return
_fileSystem
.
directory
(
path
);
case
HostArtifact
.
flutterWebLibrariesJson
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPlatformKernelDill
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPlatformSoundKernelDill
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledSdk
:
case
HostArtifact
.
webPrecompiledSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledCanvaskitSdk
:
case
HostArtifact
.
webPrecompiledCanvaskitSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSdk
:
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-html'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-html'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledSoundSdk
:
case
HostArtifact
.
webPrecompiledSoundSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledCanvaskitSoundSdk
:
case
HostArtifact
.
webPrecompiledCanvaskitSoundSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSoundSdk
:
case
HostArtifact
.
webPrecompiledCanvaskitAndHtmlSoundSdkSourcemaps
:
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-html-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
_getFlutterWebSdkPath
(),
'kernel'
,
'amd-canvaskit-html-sound'
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
file
(
path
);
case
HostArtifact
.
idevicesyslog
:
case
HostArtifact
.
idevicescreenshot
:
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
);
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
);
return
_cache
.
getArtifactDirectory
(
'libimobiledevice'
).
childFile
(
artifactFileName
);
case
HostArtifact
.
skyEnginePath
:
final
Directory
dartPackageDirectory
=
_cache
.
getCacheDir
(
'pkg'
);
final
String
path
=
_fileSystem
.
path
.
join
(
dartPackageDirectory
.
path
,
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
));
final
String
path
=
_fileSystem
.
path
.
join
(
dartPackageDirectory
.
path
,
_hostArtifactToFileName
(
artifact
,
_platform
));
return
_fileSystem
.
directory
(
path
);
case
HostArtifact
.
iosDeploy
:
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
);
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
);
return
_cache
.
getArtifactDirectory
(
'ios-deploy'
).
childFile
(
artifactFileName
);
case
HostArtifact
.
iproxy
:
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
.
isWindows
);
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
);
return
_cache
.
getArtifactDirectory
(
'usbmuxd'
).
childFile
(
artifactFileName
);
case
HostArtifact
.
impellerc
:
case
HostArtifact
.
libtessellator
:
final
String
artifactFileName
=
_hostArtifactToFileName
(
artifact
,
_platform
);
return
_fileSystem
.
file
(
_fileSystem
.
path
.
join
(
_hostEngineOutPath
,
artifactFileName
));
}
}
...
...
packages/flutter_tools/test/general.shard/artifacts_test.dart
View file @
4a2ed002
...
...
@@ -315,6 +315,14 @@ void main() {
fileSystem
.
path
.
join
(
'/out'
,
'host_debug_unopt'
,
'dart-sdk'
,
'bin'
,
'snapshots'
,
'frontend_server.dart.snapshot'
)
);
expect
(
artifacts
.
getHostArtifact
(
HostArtifact
.
impellerc
).
path
,
fileSystem
.
path
.
join
(
'/out'
,
'host_debug_unopt'
,
'impellerc'
),
);
expect
(
artifacts
.
getHostArtifact
(
HostArtifact
.
libtessellator
).
path
,
fileSystem
.
path
.
join
(
'/out'
,
'host_debug_unopt'
,
'libtessellator.so'
),
);
});
testWithoutContext
(
'getEngineType'
,
()
{
...
...
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