@@ -5,8 +5,12 @@ setlocal
55:: process arguments
66:: -----------------------------------------------------------------------------
77
8- set testedRevision = 17179
9- set testedVersion = 3.22.11
8+ set testedRevision = 17421
9+ set testedVersion = 3.22.23
10+
11+ set gyprev = 1685
12+ set pythonrev = 89111
13+ set cygwinrev = 66844
1014
1115:ProcessArgs
1216
@@ -87,14 +91,14 @@ if "%v8rev%"=="" goto UseTestedRev
8791if /i " %v8rev% " == " latest" goto UseLatestRev
8892if /i " %v8rev% " == " tested" goto UseTestedRev
8993if /i " %v8rev% " == " %testedRevision% " goto UseTestedRev
90- echo V8 revision: %v8rev%
94+ echo V8 revision: r %v8rev%
9195echo *** WARNING: THIS V8 REVISION MAY NOT BE COMPATIBLE WITH CLEARSCRIPT ***
9296choice /m Continue
9397if errorlevel 2 goto Exit
9498goto ResolveRevDone
9599:UseTestedRev
96100set v8rev = %testedRevision%
97- echo V8 revision: Tested (%v8rev% , Version %testedVersion% )
101+ echo V8 revision: Tested (r %v8rev% , Version %testedVersion% )
98102goto ResolveRevDone
99103:UseLatestRev
100104set v8rev = HEAD
@@ -118,7 +122,7 @@ cd build
118122
119123:DownloadV8
120124echo Downloading V8 ...
121- svn checkout http://v8.googlecode.com/svn/trunk/ @ %v8rev% v8 > getV8.log
125+ svn checkout http://v8.googlecode.com/svn/trunk@ %v8rev% v8 > getV8.log
122126if errorlevel 1 goto Error1
123127:DownloadV8Done
124128
@@ -132,19 +136,19 @@ if errorlevel 1 goto Error2
132136
133137:DownloadGYP
134138echo Downloading GYP ...
135- svn checkout http://gyp.googlecode.com/svn/trunk build/gyp > getGYP.log
139+ svn checkout http://gyp.googlecode.com/svn/trunk@ %gyprev% build/gyp > getGYP.log
136140if errorlevel 1 goto Error2
137141:DownloadGYPDone
138142
139143:DownloadPython
140144echo Downloading Python ...
141- svn checkout http://src.chromium.org/svn/trunk/tools/third_party/python_26 third_party/python_26 > getPython.log
145+ svn checkout http://src.chromium.org/svn/trunk/tools/third_party/python_26@ %pythonrev% third_party/python_26 > getPython.log
142146if errorlevel 1 goto Error2
143147:DownloadPythonDone
144148
145149:DownloadCygwin
146150echo Downloading Cygwin ...
147- svn checkout http://src.chromium.org/svn/trunk/deps/third_party/cygwin third_party/cygwin > getCygwin.log
151+ svn checkout http://src.chromium.org/svn/trunk/deps/third_party/cygwin@ %cygwinrev% third_party/cygwin > getCygwin.log
148152if errorlevel 1 goto Error2
149153:DownloadCygwinDone
150154
0 commit comments