| 
									
										
										
										
											2013-06-24 15:24:30 +08:00
										 |  |  | #!/usr/bin/env python | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-27 10:21:27 +08:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2015-06-10 14:11:34 +08:00
										 |  |  | import platform | 
					
						
							| 
									
										
										
										
											2013-06-24 15:24:30 +08:00
										 |  |  | import subprocess | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-02 07:10:05 +00:00
										 |  |  | from lib.config import get_target_arch, PLATFORM | 
					
						
							| 
									
										
										
										
											2015-07-01 09:17:44 +00:00
										 |  |  | from lib.util import get_host_arch | 
					
						
							| 
									
										
										
										
											2014-08-03 23:13:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 15:24:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 15:49:52 +08:00
										 |  |  | SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) | 
					
						
							| 
									
										
										
										
											2013-06-24 15:24:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  |   os.chdir(SOURCE_ROOT) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-03 18:03:52 +08:00
										 |  |  |   if PLATFORM != 'win32' and platform.architecture()[0] != '64bit': | 
					
						
							| 
									
										
										
										
											2015-07-01 16:51:06 +08:00
										 |  |  |     print 'Electron is required to be built on a 64bit machine' | 
					
						
							|  |  |  |     return 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 23:35:07 +08:00
										 |  |  |   update_external_binaries() | 
					
						
							| 
									
										
										
										
											2015-04-02 23:03:23 +08:00
										 |  |  |   return update_gyp() | 
					
						
							| 
									
										
										
										
											2013-06-24 15:24:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 23:35:07 +08:00
										 |  |  | def update_external_binaries(): | 
					
						
							|  |  |  |   uf = os.path.join('script', 'update-external-binaries.py') | 
					
						
							| 
									
										
										
										
											2014-05-18 23:03:46 +08:00
										 |  |  |   subprocess.check_call([sys.executable, uf]) | 
					
						
							| 
									
										
										
										
											2013-06-28 16:12:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 15:24:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | def update_gyp(): | 
					
						
							| 
									
										
										
										
											2015-04-02 23:03:23 +08:00
										 |  |  |   # Since gyp doesn't support specify link_settings for each configuration, | 
					
						
							|  |  |  |   # we are not able to link to different libraries in  "Debug" and "Release" | 
					
						
							|  |  |  |   # configurations. | 
					
						
							|  |  |  |   # In order to work around this, we decided to generate the configuration | 
					
						
							|  |  |  |   # for twice, one is to generate "Debug" config, the other one to generate | 
					
						
							|  |  |  |   # the "Release" config. And the settings are controlled by the variable | 
					
						
							|  |  |  |   # "libchromiumcontent_component" which is defined before running gyp. | 
					
						
							| 
									
										
										
										
											2015-04-11 17:58:19 +08:00
										 |  |  |   target_arch = get_target_arch() | 
					
						
							| 
									
										
										
										
											2015-04-02 23:03:23 +08:00
										 |  |  |   return (run_gyp(target_arch, 0) or run_gyp(target_arch, 1)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def run_gyp(target_arch, component): | 
					
						
							| 
									
										
										
										
											2015-07-02 07:10:05 +00:00
										 |  |  |   env = os.environ.copy() | 
					
						
							|  |  |  |   if PLATFORM == 'linux' and target_arch != get_host_arch(): | 
					
						
							|  |  |  |     env['GYP_CROSSCOMPILE'] = '1' | 
					
						
							| 
									
										
										
										
											2015-07-03 10:01:44 +08:00
										 |  |  |   elif PLATFORM == 'win32': | 
					
						
							|  |  |  |     env['GYP_MSVS_VERSION'] = '2013' | 
					
						
							| 
									
										
										
										
											2015-04-02 23:03:23 +08:00
										 |  |  |   python = sys.executable | 
					
						
							|  |  |  |   if sys.platform == 'cygwin': | 
					
						
							|  |  |  |     # Force using win32 python on cygwin. | 
					
						
							|  |  |  |     python = os.path.join('vendor', 'python_26', 'python.exe') | 
					
						
							|  |  |  |   gyp = os.path.join('vendor', 'brightray', 'vendor', 'gyp', 'gyp_main.py') | 
					
						
							| 
									
										
										
										
											2015-07-03 11:59:34 +08:00
										 |  |  |   gyp_pylib = os.path.join(os.path.dirname(gyp), 'pylib') | 
					
						
							|  |  |  |   # Avoid using the old gyp lib in system. | 
					
						
							|  |  |  |   env['PYTHONPATH'] = os.path.pathsep.join([gyp_pylib, | 
					
						
							|  |  |  |                                             env.get('PYTHONPATH', '')]) | 
					
						
							| 
									
										
										
										
											2015-04-08 19:19:40 +08:00
										 |  |  |   defines = [ | 
					
						
							|  |  |  |     '-Dlibchromiumcontent_component={0}'.format(component), | 
					
						
							|  |  |  |     '-Dtarget_arch={0}'.format(target_arch), | 
					
						
							| 
									
										
										
										
											2015-07-01 09:17:44 +00:00
										 |  |  |     '-Dhost_arch={0}'.format(get_host_arch()), | 
					
						
							| 
									
										
										
										
											2015-04-08 19:19:40 +08:00
										 |  |  |     '-Dlibrary=static_library', | 
					
						
							|  |  |  |   ] | 
					
						
							|  |  |  |   return subprocess.call([python, gyp, '-f', 'ninja', '--depth', '.', | 
					
						
							| 
									
										
										
										
											2015-07-02 07:10:05 +00:00
										 |  |  |                           'atom.gyp', '-Icommon.gypi'] + defines, env=env) | 
					
						
							| 
									
										
										
										
											2013-06-24 15:24:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 14:11:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 15:24:30 +08:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |   sys.exit(main()) |