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

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

Issue 2933203004: Replace the --platform vm option with --kernel-binaries option. (Closed)
Patch Set: s/set_kernel_binaries_directory/SetKernelBinaries Created 3 years, 6 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 | « runtime/bin/main.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/compiler_configuration.dart
diff --git a/tools/testing/dart/compiler_configuration.dart b/tools/testing/dart/compiler_configuration.dart
index af7c3840ffc3b285ce0ad65ba66aab4f8e135957..1be5f2bcbe1d9d44e7ce110c6d339dfd76799c28 100644
--- a/tools/testing/dart/compiler_configuration.dart
+++ b/tools/testing/dart/compiler_configuration.dart
@@ -198,7 +198,7 @@ class NoneCompilerConfiguration extends CompilerConfiguration {
List<String> args = [];
if (useDfe) {
args.add('--dfe=${buildDir}/gen/kernel-service.dart.snapshot');
- args.add('--platform=${buildDir}/patched_sdk/platform.dill');
+ args.add('--kernel-binaries=${buildDir}/patched_sdk');
}
if (isChecked) {
args.add('--enable_asserts');
@@ -608,7 +608,7 @@ class PrecompilerCompilerConfiguration extends CompilerConfiguration {
var args = <String>[];
if (useDfe) {
args.add('--dfe=utils/kernel-service/kernel-service.dart');
- args.add('--platform=${buildDir}/patched_sdk/platform.dill');
+ args.add('--kernel-binaries=${buildDir}/patched_sdk');
}
args.add("--snapshot-kind=app-aot");
if (useBlobs) {
« no previous file with comments | « runtime/bin/main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698