зеркало из https://github.com/electron/electron.git
58 строки
1.5 KiB
Python
Executable File
58 строки
1.5 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import contextlib
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
|
|
def main():
|
|
natives = os.path.abspath(sys.argv[1])
|
|
coffee_source_files = sys.argv[2:]
|
|
|
|
output_dir = os.path.dirname(natives)
|
|
js_source_files = compile_coffee(coffee_source_files, output_dir)
|
|
call_js2c(natives, js_source_files)
|
|
|
|
|
|
def compile_coffee(coffee_source_files, output_dir):
|
|
js_source_files = []
|
|
for source_file in coffee_source_files:
|
|
output_filename = os.path.splitext(source_file)[0] + '.js'
|
|
output_path = os.path.join(output_dir, output_filename)
|
|
js_source_files.append(output_path)
|
|
call_compile_coffee(source_file, output_path)
|
|
return js_source_files
|
|
|
|
|
|
def call_compile_coffee(source_file, output_filename):
|
|
compile_coffee = os.path.join(SOURCE_ROOT, 'tools', 'compile-coffee.py')
|
|
subprocess.check_call([sys.executable, compile_coffee, source_file,
|
|
output_filename])
|
|
|
|
|
|
def call_js2c(natives, js_source_files):
|
|
js2c = os.path.join(SOURCE_ROOT, 'vendor', 'node', 'tools', 'js2c.py')
|
|
src_dir = os.path.dirname(js_source_files[0])
|
|
with scoped_cwd(src_dir):
|
|
subprocess.check_call(
|
|
[sys.executable, js2c, natives] +
|
|
[os.path.basename(source) for source in js_source_files])
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def scoped_cwd(path):
|
|
cwd = os.getcwd()
|
|
os.chdir(path)
|
|
try:
|
|
yield
|
|
finally:
|
|
os.chdir(cwd)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|