OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright 2013 The Chromium Authors. All rights reserved. | 3 # Copyright 2013 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 import optparse | 7 import optparse |
8 import sys | 8 import sys |
9 | 9 |
10 from util import build_utils | 10 from util import build_utils |
11 from util import proguard_util | 11 from util import proguard_util |
12 | 12 |
13 def DoProguard(options): | 13 def DoProguard(options): |
14 proguard = proguard_util.ProguardCmdBuilder(options.proguard_path) | 14 proguard = proguard_util.ProguardCmdBuilder(options.proguard_path) |
15 proguard.injars(build_utils.ParseGypList(options.input_paths)) | 15 proguard.injars(build_utils.ParseGypList(options.input_paths)) |
16 proguard.configs(build_utils.ParseGypList(options.proguard_configs)) | 16 proguard.configs(build_utils.ParseGypList(options.proguard_configs)) |
17 proguard.outjar(options.output_path) | 17 proguard.outjar(options.output_path) |
18 | 18 |
19 if options.mapping: | 19 if options.mapping: |
20 proguard.mapping(options.mapping) | 20 proguard.mapping(options.mapping) |
21 | 21 |
22 if options.is_test: | 22 if options.tested_apk_info: |
23 proguard.is_test(True) | 23 proguard.is_test(options.tested_apk_info) |
24 | 24 |
25 classpath = [] | 25 classpath = [] |
26 for arg in options.classpath: | 26 for arg in options.classpath: |
27 classpath += build_utils.ParseGypList(arg) | 27 classpath += build_utils.ParseGypList(arg) |
28 classpath = list(set(classpath)) | 28 classpath = list(set(classpath)) |
29 proguard.libraryjars(classpath) | 29 proguard.libraryjars(classpath) |
30 | 30 |
31 proguard.CheckOutput() | 31 proguard.CheckOutput() |
32 | 32 |
33 return proguard.GetInputs() | 33 return proguard.GetInputs() |
34 | 34 |
35 | 35 |
36 def main(args): | 36 def main(args): |
37 args = build_utils.ExpandFileArgs(args) | 37 args = build_utils.ExpandFileArgs(args) |
38 parser = optparse.OptionParser() | 38 parser = optparse.OptionParser() |
39 build_utils.AddDepfileOption(parser) | 39 build_utils.AddDepfileOption(parser) |
40 parser.add_option('--proguard-path', | 40 parser.add_option('--proguard-path', |
41 help='Path to the proguard executable.') | 41 help='Path to the proguard executable.') |
42 parser.add_option('--input-paths', | 42 parser.add_option('--input-paths', |
43 help='Paths to the .jar files proguard should run on.') | 43 help='Paths to the .jar files proguard should run on.') |
44 parser.add_option('--output-path', help='Path to the generated .jar file.') | 44 parser.add_option('--output-path', help='Path to the generated .jar file.') |
45 parser.add_option('--proguard-configs', | 45 parser.add_option('--proguard-configs', |
46 help='Paths to proguard configuration files.') | 46 help='Paths to proguard configuration files.') |
47 parser.add_option('--mapping', help='Path to proguard mapping to apply.') | 47 parser.add_option('--mapping', help='Path to proguard mapping to apply.') |
48 parser.add_option('--is-test', action='store_true', | 48 parser.add_option('--is-test', action='store_true', |
49 help='If true, extra proguard options for instrumentation tests will be ' | 49 help='If true, extra proguard options for instrumentation tests will be ' |
50 'added.') | 50 'added.') |
| 51 parser.add_option('--tested-apk-info', help='Path to the proguard .info file ' |
| 52 'for the tested apk') |
51 parser.add_option('--classpath', action='append', | 53 parser.add_option('--classpath', action='append', |
52 help='Classpath for proguard.') | 54 help='Classpath for proguard.') |
53 parser.add_option('--stamp', help='Path to touch on success.') | 55 parser.add_option('--stamp', help='Path to touch on success.') |
54 | 56 |
55 options, _ = parser.parse_args(args) | 57 options, _ = parser.parse_args(args) |
56 | 58 |
57 inputs = DoProguard(options) | 59 inputs = DoProguard(options) |
58 | 60 |
59 if options.depfile: | 61 if options.depfile: |
60 build_utils.WriteDepfile( | 62 build_utils.WriteDepfile( |
61 options.depfile, | 63 options.depfile, |
62 inputs + build_utils.GetPythonDependencies()) | 64 inputs + build_utils.GetPythonDependencies()) |
63 | 65 |
64 if options.stamp: | 66 if options.stamp: |
65 build_utils.Touch(options.stamp) | 67 build_utils.Touch(options.stamp) |
66 | 68 |
67 | 69 |
68 if __name__ == '__main__': | 70 if __name__ == '__main__': |
69 sys.exit(main(sys.argv[1:])) | 71 sys.exit(main(sys.argv[1:])) |
OLD | NEW |