зеркало из https://github.com/electron/electron.git
17 строки
318 B
Python
17 строки
318 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
def main():
|
|
js2c = sys.argv[1]
|
|
root = sys.argv[2]
|
|
natives = sys.argv[3]
|
|
js_source_files = sys.argv[4:]
|
|
|
|
subprocess.check_call(
|
|
[js2c, natives] + js_source_files + ['--only-js', "--root", root])
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main()) |