(python)
| 410 | |
| 411 | |
| 412 | def run_automate_prebuilt_cef(python): |
| 413 | print("[build_distrib.py] Run automate.py --prebuilt-cef for {arch}" |
| 414 | .format(arch=python["arch"])) |
| 415 | automate = os.path.join(TOOLS_DIR, "automate.py") |
| 416 | command = ("\"{python}\" {automate} --prebuilt-cef" |
| 417 | .format(python=python["executable"], automate=automate)) |
| 418 | code = subprocess.call(command, shell=True) |
| 419 | if code != 0: |
| 420 | print("[build_distrib.py] ERROR while running automate.py") |
| 421 | sys.exit(1) |
| 422 | |
| 423 | |
| 424 | def pack_prebuilt_cef(arch): |