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/environment.dart

Issue 2981403002: Add dart2js_with_kernel_in_ssa flag to test.dart and pass it along to dart2js (Closed)
Patch Set: Changed flag name Created 3 years, 5 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/configuration.dart ('k') | tools/testing/dart/options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/environment.dart
diff --git a/tools/testing/dart/environment.dart b/tools/testing/dart/environment.dart
index 0e07dadc289fee5481a3d1ea20c4c7c72b3d1cb4..c0d3c5316d39bc909a2b0beaa35e3a6b8969bfd2 100644
--- a/tools/testing/dart/environment.dart
+++ b/tools/testing/dart/environment.dart
@@ -18,6 +18,8 @@ final _variables = {
"compiler": new _Variable((c) => c.compiler.name, Compiler.names),
"csp": new _Variable.bool((c) => c.isCsp),
"dart2js_with_kernel": new _Variable.bool((c) => c.useDart2JSWithKernel),
+ "dart2js_with_kernel_in_ssa":
+ new _Variable.bool((c) => c.useDart2JSWithKernelInSsa),
"fast_startup": new _Variable.bool((c) => c.useFastStartup),
"enable_asserts": new _Variable.bool((c) => c.useEnableAsserts),
"host_checked": new _Variable.bool((c) => c.isHostChecked),
« no previous file with comments | « tools/testing/dart/configuration.dart ('k') | tools/testing/dart/options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698