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

Side by Side Diff: check_curl.py

Issue 10234088: Use GYP to generate MSVS project files (Closed)
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:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # coding: utf-8 2 # coding: utf-8
3 3
4 import os, sys, subprocess, tempfile; 4 import os, sys, subprocess, tempfile;
5 baseDir = os.path.abspath(os.path.dirname(__file__)) 5 baseDir = os.path.abspath(os.path.dirname(__file__))
6 6
7 def check_curl(): 7 def check_curl():
8 buildDir = os.path.join(baseDir, 'build') 8 buildDir = os.path.join(baseDir, 'build')
9 if not os.path.exists(buildDir): 9 if not os.path.exists(buildDir):
10 os.makedirs(buildDir); 10 os.makedirs(buildDir);
(...skipping 13 matching lines...) Expand all
24 # call failed, curl not available 24 # call failed, curl not available
25 sys.stdout.write('0') 25 sys.stdout.write('0')
26 else: 26 else:
27 # call succeeded, curl can be used 27 # call succeeded, curl can be used
28 sys.stdout.write('1') 28 sys.stdout.write('1')
29 finally: 29 finally:
30 os.remove(name) 30 os.remove(name)
31 31
32 if __name__ == '__main__': 32 if __name__ == '__main__':
33 check_curl() 33 check_curl()
OLDNEW
« no previous file with comments | « buildmsvs_release.bat ('k') | common.gypi » ('j') | msvs_gyp_wrapper.py » ('J')

Powered by Google App Engine
This is Rietveld