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

Side by Side Diff: build-v8.cmd

Issue 29783566: Issue 6596 - update to work with v8 6.7.288.11 (Closed) Base URL: https://github.com/adblockplus/libadblockplus@99836840e314b7941fdb51cb2b91f23ca3ee3414
Patch Set: mention the version of V8 Created May 25, 2018, 10:04 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 | « appveyor.yml ('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
(Empty)
1 @echo off
2 SETLOCAL
3
4 rem %1 - MSBuildBinPath, e.g. c:\Program Files (x86)\MSBuild\14.0\Bin
5 rem %2 - arch {ia32, x64}
6 rem %3 - configuration {Release, Debug}
7 set MsBuildBinPath=%~1
8 set ARCH=%~2
9 set CONFIGURATION=%~3
10
11 pushd "%~dp0"
12
13 @python msvs_gyp_wrapper.py --depth=build\%ARCH%\v8 -f msvs -I build-v8.gypi --g enerator-output=build\%ARCH%\v8 -G msvs_version=2017 -Dtarget_arch=%ARCH% -Dhost _arch=%ARCH% third_party/v8/src/v8.gyp
14
15 @"%MSBuildBinPath%/msbuild.exe" /m build/%ARCH%/v8/third_party/v8/src/v8.sln /p: Configuration=%CONFIGURATION% /target:v8_snapshot,v8_libplatform,v8_libsampler
16
17 popd
18
19 ENDLOCAL
20
21 exit /b
OLDNEW
« no previous file with comments | « appveyor.yml ('k') | build-v8.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld