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

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

Issue 2786083002: Read platform.dill in the VM. (Closed)
Patch Set: Incorporate review comments and merge. Created 3 years, 8 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 | « tests/co19/co19-kernel.status ('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 dab8e01f05db8b309b44b5845c44aa9efde651f0..1629167fd62aafcaad43b0750a989b5e6c72d500 100644
--- a/tools/testing/dart/compiler_configuration.dart
+++ b/tools/testing/dart/compiler_configuration.dart
@@ -215,6 +215,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');
}
if (isChecked) {
args.add('--enable_asserts');
@@ -665,6 +666,7 @@ class PrecompilerCompilerConfiguration extends CompilerConfiguration {
var args = new List();
if (useDFE) {
args.add('--dfe=utils/kernel-service/kernel-service.dart');
+ args.add('--platform=${buildDir}/patched_sdk/platform.dill');
}
args.add("--snapshot-kind=app-aot");
if (useBlobs) {
« no previous file with comments | « tests/co19/co19-kernel.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698