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

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

Issue 264923007: Add java_cpp_template template (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « base/BUILD.gn ('k') | build/config/android/internal_rules.gni » ('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 """Archives a set of files.
8 """
9
10 import ast
11 import optparse
12 import os
13 import sys
14 import zipfile
15
16 def DoZip(inputs, output, base_dir):
17 with zipfile.ZipFile(output, 'w') as outfile:
18 for f in inputs:
19 outfile.write(f, os.path.relpath(f, base_dir))
20
21 def main():
22 parser = optparse.OptionParser()
23 parser.add_option('--inputs', help='List of files to archive.')
24 parser.add_option('--output', help='Path to output archive.')
25 parser.add_option('--base-dir',
26 help='If provided, the paths in the archive will be '
27 'relative to this directory', default='.')
28
29 options, _ = parser.parse_args()
30
31 inputs = ast.literal_eval(options.inputs)
32 output = options.output
33 base_dir = options.base_dir
34
35 DoZip(inputs, output, base_dir)
36
37
38 if __name__ == '__main__':
39 sys.exit(main())
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | build/config/android/internal_rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698