| #!/usr/bin/env python |
| # 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 subprocess |
| import sys |
| import os |
| |
| |
| 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('--arm64-out-dir', type=str) |
| parser.add_argument('--armv7-out-dir', type=str) |
| |
| args = parser.parse_args() |
| |
| if args.arm64_out_dir: |
| generate_gen_snapshot(args.arm64_out_dir, os.path.join(args.dst, 'gen_snapshot_arm64')) |
| |
| if args.armv7_out_dir: |
| generate_gen_snapshot(args.armv7_out_dir, os.path.join(args.dst, 'gen_snapshot_armv7')) |
| |
| |
| def generate_gen_snapshot(directory, destination): |
| gen_snapshot_dir = os.path.join(directory, 'clang_x64', 'gen_snapshot') |
| if not os.path.isfile(gen_snapshot_dir): |
| print 'Cannot find gen_snapshot at', gen_snapshot_dir |
| sys.exit(1) |
| |
| subprocess.check_call(['xcrun', 'bitcode_strip', '-r', gen_snapshot_dir, |
| '-o', destination]) |
| |
| |
| if __name__ == '__main__': |
| sys.exit(main()) |
| |