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

Unified Diff: utils/compiler/build_helper.dart

Issue 11307009: Revert "Minifying renamer for classes, methods and instance variables." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « lib/compiler/implementation/lib/native_helper.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/compiler/build_helper.dart
diff --git a/utils/compiler/build_helper.dart b/utils/compiler/build_helper.dart
index 04452be3d06a7b76114b24f40a172744167aff24..0b4d29eca59e43fae3c312e51de7a984de86fca3 100644
--- a/utils/compiler/build_helper.dart
+++ b/utils/compiler/build_helper.dart
@@ -29,22 +29,19 @@ main() {
List<String> productionScript = buildScript(
'dart2js-production',
dartUri, dartVmUri,
- 'lib/compiler/implementation/dart2js.dart',
- '');
+ 'lib/compiler/implementation/dart2js.dart', '');
writeScript(productionUri, productionScript);
List<String> developerScript = buildScript(
'dart2js-developer',
dartUri, dartVmUri,
- 'lib/compiler/implementation/dart2js.dart',
- r' ${DART_VM_FLAGS:---enable_checked_mode}');
+ 'lib/compiler/implementation/dart2js.dart', ' --enable_checked_mode');
writeScript(developerUri, developerScript);
List<String> dartdocScript = buildScript(
'dartdoc',
dartUri, dartVmUri,
- 'pkg/dartdoc/bin/dartdoc.dart',
- '');
+ 'pkg/dartdoc/bin/dartdoc.dart', '');
writeScript(dartdocUri, dartdocScript);
}
« no previous file with comments | « lib/compiler/implementation/lib/native_helper.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698