Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: build/android/gyp/create_dist_jar.py

Issue 525533003: Add content_shell_test_apk and a several dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-content-shell-apk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/android/gyp/apk_obfuscate.py ('k') | build/android/gyp/util/build_utils.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 #
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
5 # found in the LICENSE file.
6
7 """Merges a list of jars into a single jar."""
8
9 import optparse
10 import sys
11
12 from util import build_utils
13
14 def main(args):
15 args = build_utils.ExpandFileArgs(args)
16 parser = optparse.OptionParser()
17 build_utils.AddDepfileOption(parser)
18 parser.add_option('--output', help='Path to output jar.')
19 parser.add_option('--inputs', action='append', help='List of jar inputs.')
20 options, _ = parser.parse_args(args)
21 build_utils.CheckOptions(options, parser, ['output', 'inputs'])
22
23 input_jars = []
24 for inputs_arg in options.inputs:
25 input_jars.extend(build_utils.ParseGypList(inputs_arg))
26
27 build_utils.MergeZips(options.output, input_jars)
28
29 if options.depfile:
30 build_utils.WriteDepfile(
31 options.depfile,
32 input_jars + build_utils.GetPythonDependencies())
33
34
35 if __name__ == '__main__':
36 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « build/android/gyp/apk_obfuscate.py ('k') | build/android/gyp/util/build_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698