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

Side by Side Diff: sdk/bin/pub_sdk.bat

Issue 943993005: Remove heap settings from pub scripts for SDK too. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/bin/pub_sdk ('k') | 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 @echo off 1 @echo off
2 REM Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 REM Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 REM for details. All rights reserved. Use of this source code is governed by a 3 REM for details. All rights reserved. Use of this source code is governed by a
4 REM BSD-style license that can be found in the LICENSE file. 4 REM BSD-style license that can be found in the LICENSE file.
5 5
6 setlocal 6 setlocal
7 rem Handle the case where dart-sdk/bin has been symlinked to. 7 rem Handle the case where dart-sdk/bin has been symlinked to.
8 set DIR_NAME_WITH_SLASH=%~dp0 8 set DIR_NAME_WITH_SLASH=%~dp0
9 set DIR_NAME=%DIR_NAME_WITH_SLASH:~0,-1%% 9 set DIR_NAME=%DIR_NAME_WITH_SLASH:~0,-1%%
10 call :follow_links "%DIR_NAME%", RETURNED_BIN_DIR 10 call :follow_links "%DIR_NAME%", RETURNED_BIN_DIR
11 rem Get rid of surrounding quotes. 11 rem Get rid of surrounding quotes.
12 for %%i in ("%RETURNED_BIN_DIR%") do set BIN_DIR=%%~fi 12 for %%i in ("%RETURNED_BIN_DIR%") do set BIN_DIR=%%~fi
13 13
14 rem Get absolute full name for SDK_DIR. 14 rem Get absolute full name for SDK_DIR.
15 for %%i in ("%BIN_DIR%\..\") do set SDK_DIR=%%~fi 15 for %%i in ("%BIN_DIR%\..\") do set SDK_DIR=%%~fi
16 16
17 rem Remove trailing backslash if there is one 17 rem Remove trailing backslash if there is one
18 IF %SDK_DIR:~-1%==\ set SDK_DIR=%SDK_DIR:~0,-1% 18 IF %SDK_DIR:~-1%==\ set SDK_DIR=%SDK_DIR:~0,-1%
19 19
20 set VM_OPTIONS= 20 set VM_OPTIONS=
21 21
22 rem Give the VM extra memory for dart2js. 22 rem We allow extra vm options to be passed in through an environment variable.
23 rem # TODO(rnystrom): Remove when #8355 is fixed. 23 if not "_%DART_VM_OPTIONS%_" == "__" (
24 rem See comments regarding options below in dart2js shell script. 24 set VM_OPTIONS=%VM_OPTIONS% %DART_VM_OPTIONS%
25 set VM_OPTIONS=%VM_OPTIONS% --old_gen_heap_size=1024 25 )
26 26
27 "%BIN_DIR%\dart" %VM_OPTIONS% "%BIN_DIR%\snapshots\pub.dart.snapshot" %* 27 "%BIN_DIR%\dart" %VM_OPTIONS% "%BIN_DIR%\snapshots\pub.dart.snapshot" %*
28 28
29 endlocal 29 endlocal
30 30
31 exit /b %errorlevel% 31 exit /b %errorlevel%
32 32
33 :follow_links 33 :follow_links
34 setlocal 34 setlocal
35 for %%i in (%1) do set result=%%~fi 35 for %%i in (%1) do set result=%%~fi
36 set current= 36 set current=
37 for /f "usebackq tokens=2 delims=[]" %%i in (`dir /a:l "%~dp1" 2^>nul ^ 37 for /f "usebackq tokens=2 delims=[]" %%i in (`dir /a:l "%~dp1" 2^>nul ^
38 ^| find "> %~n1 ["`) do ( 38 ^| find "> %~n1 ["`) do (
39 set current=%%i 39 set current=%%i
40 ) 40 )
41 if not "%current%"=="" call :follow_links "%current%", result 41 if not "%current%"=="" call :follow_links "%current%", result
42 endlocal & set %~2=%result% 42 endlocal & set %~2=%result%
43 goto :eof 43 goto :eof
44 44
45 :end 45 :end
OLDNEW
« no previous file with comments | « sdk/bin/pub_sdk ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698