Commit 1c021506 authored by Stevie Strickland's avatar Stevie Strickland Committed by Martin Kustermann

Remove unused --packages argument to gen_snapshot. (#28101)

This command line argument has already been removed in the main
Dart repository, so building flutter with the latest dart fails.
parent a010912b
...@@ -46,13 +46,11 @@ class GenSnapshot { ...@@ -46,13 +46,11 @@ class GenSnapshot {
Future<int> run({ Future<int> run({
@required SnapshotType snapshotType, @required SnapshotType snapshotType,
@required String packagesPath,
IOSArch iosArch, IOSArch iosArch,
Iterable<String> additionalArgs = const <String>[], Iterable<String> additionalArgs = const <String>[],
}) { }) {
final List<String> args = <String>[ final List<String> args = <String>[
'--causal_async_stacks', '--causal_async_stacks',
'--packages=$packagesPath',
]..addAll(additionalArgs); ]..addAll(additionalArgs);
final String snapshotterPath = getSnapshotterPath(snapshotType); final String snapshotterPath = getSnapshotterPath(snapshotType);
...@@ -193,7 +191,6 @@ class AOTSnapshotter { ...@@ -193,7 +191,6 @@ class AOTSnapshotter {
final SnapshotType snapshotType = SnapshotType(platform, buildMode); final SnapshotType snapshotType = SnapshotType(platform, buildMode);
final int genSnapshotExitCode = await genSnapshot.run( final int genSnapshotExitCode = await genSnapshot.run(
snapshotType: snapshotType, snapshotType: snapshotType,
packagesPath: packageMap.packagesPath,
additionalArgs: genSnapshotArgs, additionalArgs: genSnapshotArgs,
iosArch: iosArch, iosArch: iosArch,
); );
...@@ -537,7 +534,6 @@ class JITSnapshotter { ...@@ -537,7 +534,6 @@ class JITSnapshotter {
final SnapshotType snapshotType = SnapshotType(platform, buildMode); final SnapshotType snapshotType = SnapshotType(platform, buildMode);
final int genSnapshotExitCode = await genSnapshot.run( final int genSnapshotExitCode = await genSnapshot.run(
snapshotType: snapshotType, snapshotType: snapshotType,
packagesPath: packagesPath,
additionalArgs: genSnapshotArgs, additionalArgs: genSnapshotArgs,
); );
if (genSnapshotExitCode != 0) { if (genSnapshotExitCode != 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment