[flutter_tools] disable dartdev when calling snapshots directly (#58830)
This commit is contained in:
parent
9dad2d98df
commit
64538f4d78
@ -119,6 +119,7 @@ class BuildRunner extends CodeGenerator {
|
||||
final File buildScript = globals.fs.file(generateResult.stdout.trim());
|
||||
final ProcessResult result = await globals.processManager.run(<String>[
|
||||
globals.artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
'--snapshot=${buildSnapshot.path}',
|
||||
'--snapshot-kind=app-jit',
|
||||
'--packages=${globals.fs.path.join(generatedDirectory.path, '.packages')}',
|
||||
|
@ -220,6 +220,7 @@ class BuildDaemonCreator {
|
||||
// STDIO.
|
||||
final List<String> args = <String>[
|
||||
globals.artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
'--packages=$buildScriptPackages',
|
||||
buildScript,
|
||||
'daemon',
|
||||
|
@ -38,6 +38,7 @@ Future<void> generateLocalizations({
|
||||
);
|
||||
final ProcessResult result = await processManager.run(<String>[
|
||||
dartBinaryPath,
|
||||
'--disable-dart-dev',
|
||||
genL10nPath,
|
||||
'--gen-inputs-and-outputs-list=${dependenciesDir.path}',
|
||||
if (options.arbDirectory != null)
|
||||
|
@ -166,6 +166,7 @@ class Dart2JSTarget extends Target {
|
||||
// parse the kernel file for web builds.
|
||||
final ProcessResult kernelResult = await globals.processManager.run(<String>[
|
||||
globals.artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
globals.artifacts.getArtifactPath(Artifact.dart2jsSnapshot),
|
||||
'--libraries-spec=$specPath',
|
||||
...?extraFrontEndOptions,
|
||||
@ -186,6 +187,7 @@ class Dart2JSTarget extends Target {
|
||||
}
|
||||
final ProcessResult javaScriptResult = await globals.processManager.run(<String>[
|
||||
globals.artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
globals.artifacts.getArtifactPath(Artifact.dart2jsSnapshot),
|
||||
'--libraries-spec=$specPath',
|
||||
...?extraFrontEndOptions,
|
||||
|
@ -226,6 +226,7 @@ class KernelCompiler {
|
||||
}
|
||||
final List<String> command = <String>[
|
||||
engineDartPath,
|
||||
'--disable-dart-dev',
|
||||
frontendServer,
|
||||
'--sdk-root',
|
||||
sdkRoot,
|
||||
@ -627,6 +628,7 @@ class DefaultResidentCompiler implements ResidentCompiler {
|
||||
);
|
||||
final List<String> command = <String>[
|
||||
globals.artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
frontendServer,
|
||||
'--sdk-root',
|
||||
sdkRoot,
|
||||
|
@ -60,6 +60,7 @@ class AnalysisServer {
|
||||
);
|
||||
final List<String> command = <String>[
|
||||
_fileSystem.path.join(sdkPath, 'bin', 'dart'),
|
||||
'--disable-dart-dev',
|
||||
snapshot,
|
||||
for (String experiment in _experiments)
|
||||
...<String>[
|
||||
|
@ -65,6 +65,7 @@ class FuchsiaKernelCompiler {
|
||||
|
||||
final List<String> command = <String>[
|
||||
globals.artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
kernelCompiler,
|
||||
...flags,
|
||||
];
|
||||
|
@ -159,6 +159,7 @@ void main() {
|
||||
final FakeCommand fakeCommand = FakeCommand(
|
||||
command: const <String>[
|
||||
'dart-sdk/bin/dart',
|
||||
'--disable-dart-dev',
|
||||
'dart-sdk/bin/snapshots/analysis_server.dart.snapshot',
|
||||
'--enable-experiment',
|
||||
'non-nullable',
|
||||
|
@ -86,6 +86,7 @@ void main() {
|
||||
processManager = FakeProcessManager.list(<FakeCommand>[
|
||||
FakeCommand(command: <String>[
|
||||
artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
artifacts.getArtifactPath(Artifact.frontendServerSnapshotForEngineDartSdk),
|
||||
'--sdk-root',
|
||||
artifacts.getArtifactPath(Artifact.flutterPatchedSdkPath) + '/',
|
||||
@ -115,6 +116,7 @@ void main() {
|
||||
processManager = FakeProcessManager.list(<FakeCommand>[
|
||||
FakeCommand(command: <String>[
|
||||
artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
artifacts.getArtifactPath(Artifact.frontendServerSnapshotForEngineDartSdk),
|
||||
'--sdk-root',
|
||||
artifacts.getArtifactPath(Artifact.flutterPatchedSdkPath) + '/',
|
||||
@ -144,6 +146,7 @@ void main() {
|
||||
processManager = FakeProcessManager.list(<FakeCommand>[
|
||||
FakeCommand(command: <String>[
|
||||
artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
artifacts.getArtifactPath(Artifact.frontendServerSnapshotForEngineDartSdk),
|
||||
'--sdk-root',
|
||||
artifacts.getArtifactPath(Artifact.flutterPatchedSdkPath) + '/',
|
||||
@ -174,6 +177,7 @@ void main() {
|
||||
processManager = FakeProcessManager.list(<FakeCommand>[
|
||||
FakeCommand(command: <String>[
|
||||
artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
artifacts.getArtifactPath(Artifact.frontendServerSnapshotForEngineDartSdk),
|
||||
'--sdk-root',
|
||||
artifacts.getArtifactPath(Artifact.flutterPatchedSdkPath) + '/',
|
||||
@ -206,6 +210,7 @@ void main() {
|
||||
processManager = FakeProcessManager.list(<FakeCommand>[
|
||||
FakeCommand(command: <String>[
|
||||
artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
artifacts.getArtifactPath(Artifact.frontendServerSnapshotForEngineDartSdk),
|
||||
'--sdk-root',
|
||||
artifacts.getArtifactPath(Artifact.flutterPatchedSdkPath) + '/',
|
||||
@ -236,6 +241,7 @@ void main() {
|
||||
processManager = FakeProcessManager.list(<FakeCommand>[
|
||||
FakeCommand(command: <String>[
|
||||
artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
artifacts.getArtifactPath(Artifact.frontendServerSnapshotForEngineDartSdk),
|
||||
'--sdk-root',
|
||||
artifacts.getArtifactPath(Artifact.flutterPatchedSdkPath) + '/',
|
||||
@ -278,6 +284,7 @@ void main() {
|
||||
processManager = FakeProcessManager.list(<FakeCommand>[
|
||||
FakeCommand(command: <String>[
|
||||
artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
artifacts.getArtifactPath(Artifact.frontendServerSnapshotForEngineDartSdk),
|
||||
'--sdk-root',
|
||||
artifacts.getArtifactPath(Artifact.flutterPatchedSdkPath) + '/',
|
||||
|
@ -21,6 +21,7 @@ void main() {
|
||||
const FakeCommand(
|
||||
command: <String>[
|
||||
'dart',
|
||||
'--disable-dart-dev',
|
||||
'dev/tools/localization/bin/gen_l10n.dart',
|
||||
'--gen-inputs-and-outputs-list=/',
|
||||
'--arb-dir=arb',
|
||||
|
@ -23,6 +23,7 @@ import '../../../src/testbed.dart';
|
||||
|
||||
const List<String> kDart2jsLinuxArgs = <String>[
|
||||
'bin/cache/dart-sdk/bin/dart',
|
||||
'--disable-dart-dev',
|
||||
'bin/cache/dart-sdk/bin/snapshots/dart2js.dart.snapshot',
|
||||
'--libraries-spec=bin/cache/flutter_web_sdk/libraries.json',
|
||||
];
|
||||
|
@ -623,6 +623,7 @@ void main() {
|
||||
processManager.addCommand(FakeCommand(
|
||||
command: <String>[
|
||||
globals.artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
globals.fs.path.join(Cache.flutterRoot, 'dev', 'tools', 'localization', 'bin', 'gen_l10n.dart'),
|
||||
'--gen-inputs-and-outputs-list=${dependencies.absolute.path}',
|
||||
],
|
||||
@ -651,6 +652,7 @@ void main() {
|
||||
processManager.addCommand(FakeCommand(
|
||||
command: <String>[
|
||||
globals.artifacts.getArtifactPath(Artifact.engineDartBinary),
|
||||
'--disable-dart-dev',
|
||||
globals.fs.path.join(Cache.flutterRoot, 'dev', 'tools', 'localization', 'bin', 'gen_l10n.dart'),
|
||||
'--gen-inputs-and-outputs-list=${dependencies.absolute.path}',
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user