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

Delta Between Two Patch Sets: createsolution.bat

Issue 10234088: Use GYP to generate MSVS project files (Closed)
Left Patch Set: Created April 23, 2013, 4:24 p.m.
Right Patch Set: Moved project files to build/ Created April 24, 2013, 1:57 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « convert_js.py ('k') | libadblockplus.gyp » ('j') | msvs_gyp_wrapper.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 @echo off 1 @echo off
Eric 2013/04/23 17:12:17 We can make this more robust by adding the stateme
Wladimir Palant 2013/04/24 06:01:34 Sure, that batch file isn't very advanced - right
2 third_party\gyp\gyp.bat --depth=. -f msvs -I common.gypi -Dtarget_arch=x64 2
3 if %1.==. goto NoArch
4
5 pushd %~dp0
6 mkdir build
7 mkdir build\shell
8 python msvs_gyp_wrapper.py --depth=. -f msvs -I common.gypi --generator-output=b uild -Dtarget_arch=%1 libadblockplus.gyp
9 goto End
10
11 :NoArch
12 echo Please add a command line parameter specifying target architecture (ia32 or x64)
13 goto End
14
15 :End
LEFTRIGHT

Powered by Google App Engine
This is Rietveld