mirror of
https://github.com/godotengine/godot-angle-static.git
synced 2026-01-01 05:48:11 +03:00
Similar to mb.py zip but with a few ANGLE-specific tricks significantly reducing the clutter, and with a couple of helper scripts added to the zip (see file docstring for details). vs mb.py, single trace, not including lib.unstripped: 400+MB => <100MB ~5800 files => <50 files Time to bundle: ~30s => ~6s Bug: b/276474703 Change-Id: I57f51dd6302045d02d0ee94ef84186446cafd570 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4518061 Reviewed-by: Cody Northrop <cnorthrop@google.com>
111 lines
3.8 KiB
Python
Executable File
111 lines
3.8 KiB
Python
Executable File
#!/usr/bin/python3
|
|
#
|
|
# Copyright 2023 The ANGLE Project Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# angle_trace_bundle.py:
|
|
# Makes a zip bundle allowing to run angle traces, similarly to mb.py but
|
|
# - trims most of the dependencies
|
|
# - includes list_traces.sh and run_trace.sh (see --trace-name)
|
|
# - lib.unstripped only included if --include-unstripped-libs
|
|
# - does not depend on vpython
|
|
# - just adds files to the zip instead of "isolate remap" with a temp dir
|
|
#
|
|
# Example usage:
|
|
# % gn args out/Android # angle_restricted_traces=["among_us"]
|
|
# % scripts/angle_trace_bundle.py out/Android angle_trace.zip --trace-name=among_us
|
|
#
|
|
# (transfer the zip elsewhere)
|
|
# % unzip angle_trace.zip -d angle_trace
|
|
# % angle_trace/list_traces.sh
|
|
# % angle_trace/run_trace.sh # only included if --trace-name, runs that trace
|
|
|
|
import argparse
|
|
import json
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
import zipfile
|
|
|
|
# {gn_dir}/angle_trace_tests has vpython in wrapper shebangs, call our runner directly
|
|
RUN_TESTS_TEMPLATE = r'''#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
python3 src/tests/angle_android_test_runner.py gtest --suite=angle_trace_tests --output-directory={gn_dir} "$@"
|
|
'''
|
|
|
|
LIST_TRACES_TEMPLATE = r'''#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
./_run_tests.sh --list-tests
|
|
'''
|
|
|
|
RUN_TRACE_TEMPLATE = r'''#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
./_run_tests.sh --filter='TraceTest.{trace_name}' --verbose --fixed-test-time-with-warmup 10
|
|
'''
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('gn_dir', help='path to GN. (e.g. out/Android)')
|
|
parser.add_argument('output_zip_file', help='output zip file')
|
|
parser.add_argument(
|
|
'--include-unstripped-libs', action='store_true', help='include lib.unstripped')
|
|
parser.add_argument('--trace-name', help='trace to run from run_script.sh')
|
|
args, _ = parser.parse_known_args()
|
|
|
|
gn_dir = os.path.join(os.path.normpath(args.gn_dir), '')
|
|
assert os.path.sep == '/' and gn_dir.endswith('/')
|
|
assert gn_dir[0] not in ('.', '/') # expecting relative to angle root
|
|
|
|
subprocess.check_call([
|
|
'python3', 'tools/mb/mb.py', 'isolate', gn_dir, 'angle_trace_perf_tests', '-i',
|
|
'infra/specs/gn_isolate_map.pyl'
|
|
])
|
|
|
|
with open(os.path.join(args.gn_dir, 'angle_trace_perf_tests.isolate')) as f:
|
|
isolate_file_paths = json.load(f)['variables']['files']
|
|
|
|
skipped_prefixes = [
|
|
'build/',
|
|
'src/tests/run_perf_tests.py', # won't work as it depends on catapult
|
|
'third_party/catapult/',
|
|
'third_party/colorama/',
|
|
'third_party/jdk/',
|
|
'third_party/jinja2/',
|
|
'third_party/logdog/',
|
|
'third_party/r8/',
|
|
'third_party/requests/',
|
|
os.path.join(gn_dir, 'lib.java/'),
|
|
os.path.join(gn_dir, 'obj/'),
|
|
]
|
|
|
|
if not args.include_unstripped_libs:
|
|
skipped_prefixes.append(os.path.join(gn_dir, 'lib.unstripped/'))
|
|
|
|
def addScript(fzip, path, contents):
|
|
info = zipfile.ZipInfo(path)
|
|
info.external_attr = 0o755 << 16 # unnecessarily obscure way to chmod 755...
|
|
fzip.writestr(info, contents)
|
|
|
|
with zipfile.ZipFile(args.output_zip_file, 'w', zipfile.ZIP_DEFLATED, allowZip64=True) as fzip:
|
|
for fn in isolate_file_paths:
|
|
path = os.path.normpath(os.path.join(gn_dir, fn))
|
|
if any(path.startswith(p) for p in skipped_prefixes):
|
|
continue
|
|
|
|
fzip.write(path)
|
|
|
|
addScript(fzip, '_run_tests.sh', RUN_TESTS_TEMPLATE.format(gn_dir=gn_dir))
|
|
addScript(fzip, 'list_traces.sh', LIST_TRACES_TEMPLATE.format(gn_dir=gn_dir))
|
|
|
|
if args.trace_name:
|
|
addScript(fzip, 'run_trace.sh',
|
|
RUN_TRACE_TEMPLATE.format(gn_dir=gn_dir, trace_name=args.trace_name))
|
|
|
|
return 0
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|