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

Side by Side Diff: build/android/gn/zip.py

Issue 1319623002: Make building of resource zips and srcjars hermetic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md5-proguard
Patch Set: rebase Created 5 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 | « no previous file | build/android/gyp/process_resources.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 """Archives a set of files. 7 """Archives a set of files.
8 """ 8 """
9 9
10 import ast 10 import ast
11 import optparse 11 import optparse
12 import os 12 import os
13 import sys 13 import sys
14 import zipfile
15 14
16 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'gyp')) 15 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'gyp'))
17 from util import build_utils 16 from util import build_utils
18 17
19 def DoZip(inputs, output, base_dir):
20 with zipfile.ZipFile(output, 'w') as outfile:
21 for f in inputs:
22 outfile.write(f, os.path.relpath(f, base_dir))
23
24 def main(): 18 def main():
25 parser = optparse.OptionParser() 19 parser = optparse.OptionParser()
26 build_utils.AddDepfileOption(parser) 20 build_utils.AddDepfileOption(parser)
27 21
28 parser.add_option('--inputs', help='List of files to archive.') 22 parser.add_option('--inputs', help='List of files to archive.')
29 parser.add_option('--output', help='Path to output archive.') 23 parser.add_option('--output', help='Path to output archive.')
30 parser.add_option('--base-dir', 24 parser.add_option('--base-dir',
31 help='If provided, the paths in the archive will be ' 25 help='If provided, the paths in the archive will be '
32 'relative to this directory', default='.') 26 'relative to this directory', default='.')
33 27
34 options, _ = parser.parse_args() 28 options, _ = parser.parse_args()
35 29
36 inputs = ast.literal_eval(options.inputs) 30 inputs = ast.literal_eval(options.inputs)
37 output = options.output 31 output = options.output
38 base_dir = options.base_dir 32 base_dir = options.base_dir
39 33
40 DoZip(inputs, output, base_dir) 34 build_utils.DoZip(inputs, output, base_dir)
41 35
42 if options.depfile: 36 if options.depfile:
43 build_utils.WriteDepfile( 37 build_utils.WriteDepfile(
44 options.depfile, 38 options.depfile,
45 build_utils.GetPythonDependencies()) 39 build_utils.GetPythonDependencies())
46 40
47 41
48 if __name__ == '__main__': 42 if __name__ == '__main__':
49 sys.exit(main()) 43 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | build/android/gyp/process_resources.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698