Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: build-v8.cmd

Issue 29493555: Issue 5433 - rename v8.gypi to build-v8.gyp (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: Created July 20, 2017, 9:14 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « android-v8-options.gypi ('k') | build-v8.gypi » ('j') | 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 SETLOCAL 2 SETLOCAL
3 3
4 rem %1 - MSBuildBinPath, e.g. c:\Program Files (x86)\MSBuild\14.0\Bin 4 rem %1 - MSBuildBinPath, e.g. c:\Program Files (x86)\MSBuild\14.0\Bin
5 rem %2 - arch {ia32, x64} 5 rem %2 - arch {ia32, x64}
6 rem %3 - configuration {Release, Debug} 6 rem %3 - configuration {Release, Debug}
7 rem %4 - platform toolset, e.g. v140 7 rem %4 - platform toolset, e.g. v140
8 set MsBuildBinPath=%~1 8 set MsBuildBinPath=%~1
9 set ARCH=%~2 9 set ARCH=%~2
10 set CONFIGURATION=%~3 10 set CONFIGURATION=%~3
11 set PlatformToolset=%~4 11 set PlatformToolset=%~4
12 12
13 pushd "%~dp0" 13 pushd "%~dp0"
14 14
15 @python msvs_gyp_wrapper.py --depth=build\%ARCH%\v8 -f msvs -I v8.gypi --generat or-output=build\%ARCH%\v8 -G msvs_version=2015 -Dtarget_arch=%ARCH% -Dhost_arch= %ARCH% third_party/v8/src/v8.gyp 15 @python msvs_gyp_wrapper.py --depth=build\%ARCH%\v8 -f msvs -I build-v8.gypi --g enerator-output=build\%ARCH%\v8 -G msvs_version=2015 -Dtarget_arch=%ARCH% -Dhost _arch=%ARCH% third_party/v8/src/v8.gyp
16 16
17 @"%MSBuildBinPath%/msbuild.exe" /m build/%ARCH%/v8/third_party/v8/src/v8.sln /p: PlatformToolset=%PlatformToolset% /p:Configuration=%CONFIGURATION% /target:v8_sn apshot,v8_libplatform,v8_libsampler 17 @"%MSBuildBinPath%/msbuild.exe" /m build/%ARCH%/v8/third_party/v8/src/v8.sln /p: PlatformToolset=%PlatformToolset% /p:Configuration=%CONFIGURATION% /target:v8_sn apshot,v8_libplatform,v8_libsampler
18 18
19 popd 19 popd
20 20
21 ENDLOCAL 21 ENDLOCAL
22 22
23 exit /b 23 exit /b
OLDNEW
« no previous file with comments | « android-v8-options.gypi ('k') | build-v8.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld