| #!/usr/bin/env python3 |
| # |
| # Copyright 2013 The Flutter Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import argparse |
| import shutil |
| import subprocess |
| import sys |
| import os |
| |
| buildroot_dir = os.path.abspath(os.path.join(os.path.realpath(__file__), '..', '..', '..', '..')) |
| |
| |
| def main(): |
| parser = argparse.ArgumentParser( |
| description='Copies architecture-dependent gen_snapshot binaries to output dir' |
| ) |
| |
| parser.add_argument('--dst', type=str, required=True) |
| parser.add_argument('--x64-path', type=str) |
| parser.add_argument('--arm64-path', type=str) |
| parser.add_argument('--zip', action='store_true', default=False) |
| |
| args = parser.parse_args() |
| |
| dst = (args.dst if os.path.isabs(args.dst) else os.path.join(buildroot_dir, args.dst)) |
| |
| # if dst folder does not exist create it. |
| if not os.path.exists(dst): |
| os.makedirs(dst) |
| |
| if args.x64_path: |
| x64_path = args.x64_path |
| if not os.path.isabs(args.x64_path): |
| x64_path = os.path.join(buildroot_dir, args.x64_path) |
| generate_gen_snapshot(x64_path, os.path.join(dst, 'gen_snapshot_x64')) |
| |
| if args.arm64_path: |
| arm64_path = args.arm64_path |
| if not os.path.isabs(args.arm64_path): |
| arm64_path = os.path.join(buildroot_dir, args.arm64_path) |
| generate_gen_snapshot(arm64_path, os.path.join(dst, 'gen_snapshot_arm64')) |
| |
| if args.zip: |
| zip_archive(dst) |
| |
| |
| def embed_codesign_configuration(config_path, contents): |
| with open(config_path, 'w') as file: |
| file.write('\n'.join(contents) + '\n') |
| |
| |
| def zip_archive(dst): |
| snapshot_filepath = ['gen_snapshot_arm64', 'gen_snapshot_x64'] |
| |
| embed_codesign_configuration(os.path.join(dst, 'entitlements.txt'), snapshot_filepath) |
| |
| subprocess.check_call([ |
| 'zip', |
| '-r', |
| 'gen_snapshot.zip', |
| '.', |
| ], cwd=dst) |
| |
| |
| def generate_gen_snapshot(gen_snapshot_path, destination): |
| if not os.path.isfile(gen_snapshot_path): |
| print('Cannot find gen_snapshot at %s' % gen_snapshot_path) |
| sys.exit(1) |
| |
| shutil.copy2(gen_snapshot_path, destination) |
| |
| |
| if __name__ == '__main__': |
| sys.exit(main()) |