2013-06-24 07:24:30 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2013-09-27 02:21:27 +00:00
|
|
|
import os
|
2013-06-24 07:24:30 +00:00
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
2013-07-01 07:49:52 +00:00
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
2013-06-24 07:24:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
os.chdir(SOURCE_ROOT)
|
|
|
|
|
2013-08-03 08:16:32 +00:00
|
|
|
update_frameworks()
|
2013-06-24 07:24:30 +00:00
|
|
|
update_gyp()
|
|
|
|
|
|
|
|
|
2013-08-03 08:16:32 +00:00
|
|
|
def update_frameworks():
|
2013-08-06 12:44:18 +00:00
|
|
|
if sys.platform == 'darwin':
|
2013-07-01 07:49:52 +00:00
|
|
|
uf = os.path.join('script', 'update-frameworks.py')
|
2013-06-28 08:12:40 +00:00
|
|
|
subprocess.check_call([sys.executable, uf])
|
|
|
|
|
2013-06-24 07:24:30 +00:00
|
|
|
|
|
|
|
def update_gyp():
|
2013-07-10 00:36:26 +00:00
|
|
|
gyp = os.path.join('vendor', 'gyp', 'gyp_main.py')
|
2013-07-01 07:49:52 +00:00
|
|
|
python = sys.executable
|
2013-08-06 12:44:18 +00:00
|
|
|
if sys.platform == 'cygwin':
|
2013-07-01 07:49:52 +00:00
|
|
|
python = os.path.join('vendor', 'python_26', 'python.exe')
|
2013-07-02 01:33:11 +00:00
|
|
|
subprocess.call([python, gyp,
|
|
|
|
'-f', 'ninja', '--depth', '.', 'atom.gyp',
|
|
|
|
'-Icommon.gypi', '-Ivendor/brightray/brightray.gypi',
|
|
|
|
'-Dtarget_arch=ia32', '-Dlibrary=static_library'])
|
2013-06-24 07:24:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|