blob: 5a6e42a5402ae84b0b0916e2d622d957aad0d101 [file] [log] [blame]
Tamas Kenezf2ee2a32017-06-21 10:30:20 +02001#!/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 Kenezc5727f52017-07-05 19:41:55 +02006# Run ProGuard and the DX or CompatDX (= D8) tool on GmsCore V10.
Tamas Kenezf2ee2a32017-06-21 10:30:20 +02007
Tamas Kenezf2ee2a32017-06-21 10:30:20 +02008import sys
Tamas Kenezf2ee2a32017-06-21 10:30:20 +02009
Tamas Keneze4d79c42017-07-21 12:31:50 +020010import run_proguard_dx_on_app
Tamas Kenez02bff032017-07-18 12:13:58 +020011
Tamas Kenezf2ee2a32017-06-21 10:30:20 +020012if __name__ == '__main__':
Tamas Keneze4d79c42017-07-21 12:31:50 +020013 sys.exit(run_proguard_dx_on_app.Main(sys.argv[1:] + ['--app', 'gmscore']))