Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1663)

Unified Diff: tools/testing/dart/runtime_configuration.dart

Issue 1947783003: Simplify command line options for creating snapshots. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testing/dart/compiler_configuration.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/runtime_configuration.dart
diff --git a/tools/testing/dart/runtime_configuration.dart b/tools/testing/dart/runtime_configuration.dart
index b8e9e3d78a33333d3ba7fefbd4caedff7bba0709..67a739a35485c7e109dff2291fbe039086cba250 100644
--- a/tools/testing/dart/runtime_configuration.dart
+++ b/tools/testing/dart/runtime_configuration.dart
@@ -238,7 +238,7 @@ class DartProductRuntimeConfiguration extends DartVmRuntimeConfiguration {
}
var augmentedArgs = new List();
- augmentedArgs.add("--run-full-snapshot=${artifact.filename}");
+ augmentedArgs.add("--run-app-snapshot=${artifact.filename}");
augmentedArgs.addAll(arguments);
return <Command>[
@@ -265,9 +265,9 @@ class DartPrecompiledRuntimeConfiguration extends DartVmRuntimeConfiguration {
}
var augmentedArgs = new List();
- augmentedArgs.add("--run-precompiled-snapshot=${artifact.filename}");
+ augmentedArgs.add("--run-app-snapshot=${artifact.filename}");
if (useBlobs) {
- augmentedArgs.add("--use_blobs");
+ augmentedArgs.add("--use-blobs");
}
augmentedArgs.addAll(arguments);
« no previous file with comments | « tools/testing/dart/compiler_configuration.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698