| # Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file |
| # for details. All rights reserved. Use of this source code is governed by a |
| # BSD-style license that can be found in the LICENSE file. |
| D8_JAR = os.path.join(utils.REPO_ROOT, 'build', 'libs', 'd8.jar') |
| def run(args, build = True, debug = True, profile = False, track_memory_file=None): |
| cmd.extend(['tools/track_memory.sh', track_memory_file]) |
| cmd.append('-agentlib:hprof=cpu=samples,interval=1,depth=8') |
| cmd.extend(['-jar', D8_JAR]) |
| subprocess.check_call(cmd) |
| if arg in ("--build", "--no-build"): |
| if __name__ == '__main__': |