Tamas Kenez | f2ee2a3 | 2017-06-21 10:30:20 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file |
| 3 | # for details. All rights reserved. Use of this source code is governed by a |
| 4 | # BSD-style license that can be found in the LICENSE file. |
| 5 | |
Tamas Kenez | c5727f5 | 2017-07-05 19:41:55 +0200 | [diff] [blame] | 6 | # Run ProGuard and the DX or CompatDX (= D8) tool on GmsCore V10. |
Tamas Kenez | f2ee2a3 | 2017-06-21 10:30:20 +0200 | [diff] [blame] | 7 | |
Tamas Kenez | f2ee2a3 | 2017-06-21 10:30:20 +0200 | [diff] [blame] | 8 | import sys |
Tamas Kenez | f2ee2a3 | 2017-06-21 10:30:20 +0200 | [diff] [blame] | 9 | |
Tamas Kenez | e4d79c4 | 2017-07-21 12:31:50 +0200 | [diff] [blame] | 10 | import run_proguard_dx_on_app |
Tamas Kenez | 02bff03 | 2017-07-18 12:13:58 +0200 | [diff] [blame] | 11 | |
Tamas Kenez | f2ee2a3 | 2017-06-21 10:30:20 +0200 | [diff] [blame] | 12 | if __name__ == '__main__': |
Tamas Kenez | e4d79c4 | 2017-07-21 12:31:50 +0200 | [diff] [blame] | 13 | sys.exit(run_proguard_dx_on_app.Main(sys.argv[1:] + ['--app', 'gmscore'])) |