OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright 2014 The Chromium Authors. All rights reserved. | 3 # Copyright 2014 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 """Merges a list of jars into a single jar.""" | 7 """Merges a list of jars into a single jar.""" |
8 | 8 |
9 import optparse | 9 import optparse |
10 import re | |
10 import sys | 11 import sys |
11 | 12 |
12 from util import build_utils | 13 from util import build_utils |
13 | 14 |
14 def main(args): | 15 def main(args): |
15 args = build_utils.ExpandFileArgs(args) | 16 args = build_utils.ExpandFileArgs(args) |
16 parser = optparse.OptionParser() | 17 parser = optparse.OptionParser() |
17 build_utils.AddDepfileOption(parser) | 18 build_utils.AddDepfileOption(parser) |
18 parser.add_option('--output', help='Path to output jar.') | 19 parser.add_option('--output', help='Path to output jar.') |
20 parser.add_option('--use-ijars', action='store_true', | |
jbudorick
2016/02/08 16:24:12
If we only use dist jars for instrumentation test
agrieve
2016/02/08 16:42:01
GYP doesn't create interface jars.
| |
21 help='Use .interface.jar rather than the given jars.') | |
19 parser.add_option('--inputs', action='append', help='List of jar inputs.') | 22 parser.add_option('--inputs', action='append', help='List of jar inputs.') |
20 options, _ = parser.parse_args(args) | 23 options, _ = parser.parse_args(args) |
21 build_utils.CheckOptions(options, parser, ['output', 'inputs']) | 24 build_utils.CheckOptions(options, parser, ['output', 'inputs']) |
22 | 25 |
23 input_jars = [] | 26 input_jars = [] |
24 for inputs_arg in options.inputs: | 27 for inputs_arg in options.inputs: |
25 input_jars.extend(build_utils.ParseGypList(inputs_arg)) | 28 input_jars.extend(build_utils.ParseGypList(inputs_arg)) |
26 | 29 |
30 if options.use_ijars: | |
31 ijar_re = re.compile(r'\.jar$') | |
32 input_jars = [ijar_re.sub('.interface.jar', p) for p in input_jars] | |
33 | |
27 build_utils.MergeZips(options.output, input_jars) | 34 build_utils.MergeZips(options.output, input_jars) |
28 | 35 |
29 if options.depfile: | 36 if options.depfile: |
30 build_utils.WriteDepfile( | 37 build_utils.WriteDepfile( |
31 options.depfile, | 38 options.depfile, |
32 input_jars + build_utils.GetPythonDependencies()) | 39 input_jars + build_utils.GetPythonDependencies()) |
33 | 40 |
34 | 41 |
35 if __name__ == '__main__': | 42 if __name__ == '__main__': |
36 sys.exit(main(sys.argv[1:])) | 43 sys.exit(main(sys.argv[1:])) |
OLD | NEW |