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

Side by Side Diff: utils/compiler/build_helper.dart

Issue 11339005: Enabled use of snapshot for dart2js on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #import('dart:io'); 5 #import('dart:io');
6 #import('dart:uri'); 6 #import('dart:uri');
7 7
8 #import('../../lib/compiler/implementation/util/uri_extras.dart'); 8 #import('../../lib/compiler/implementation/util/uri_extras.dart');
9 #import('../../lib/compiler/implementation/filenames.dart'); 9 #import('../../lib/compiler/implementation/filenames.dart');
10 10
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 REM Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 135 REM Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
136 REM for details. All rights reserved. Use of this source code is governed by a 136 REM for details. All rights reserved. Use of this source code is governed by a
137 REM BSD-style license that can be found in the LICENSE file. 137 REM BSD-style license that can be found in the LICENSE file.
138 138
139 set SCRIPTPATH=%~dp0 139 set SCRIPTPATH=%~dp0
140 140
141 REM Does the path have a trailing slash? If so, remove it. 141 REM Does the path have a trailing slash? If so, remove it.
142 if %SCRIPTPATH:~-1%==\ set SCRIPTPATH=%SCRIPTPATH:~0,-1% 142 if %SCRIPTPATH:~-1%==\ set SCRIPTPATH=%SCRIPTPATH:~0,-1%
143 143
144 set arguments=%* 144 set arguments=%*
145 set SNAPSHOTNAME=%SCRIPTPATH%dart2js.snapshot
146 if exist %SNAPSHOTNAME% set SNAPSHOT=--use_script_snapshot=%SNAPSHOTNAME%
145 147
146 "%SCRIPTPATH%\dart.exe"$options "%SCRIPTPATH%$pathWin" %arguments% 148 "%SCRIPTPATH%\dart.exe"$options %SNAPSHOT% "%SCRIPTPATH%$pathWin" %arguments%
147 '''.replaceAll('\n', '\r\n')]; 149 '''.replaceAll('\n', '\r\n')];
148 } 150 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698