| # 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. |
| parser = optparse.OptionParser(usage='%prog [options] -- [D8 options]') |
| help='Commit hash of D8 to use.', |
| help='Version of D8 to use.', |
| help='Tag of D8 to use.', |
| return parser.parse_args(argv) |
| (options, args) = ParseOptions(sys.argv) |
| jar=utils.find_r8_jar_from_options(options), |
| main='com.android.tools.r8.D8') |
| if __name__ == '__main__': |
| sys.exit(main(sys.argv[1:])) |