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

Side by Side Diff: mojo/public/tools/gn/zip.py

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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
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
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 zip_inputs = [] 57 zip_inputs = []
58 if options.zip_inputs: 58 if options.zip_inputs:
59 zip_inputs = ast.literal_eval(options.zip_inputs) 59 zip_inputs = ast.literal_eval(options.zip_inputs)
60 output = options.output 60 output = options.output
61 base_dir = options.base_dir 61 base_dir = options.base_dir
62 62
63 DoZip(inputs, link_inputs, zip_inputs, output, base_dir) 63 DoZip(inputs, link_inputs, zip_inputs, output, base_dir)
64 64
65 if __name__ == '__main__': 65 if __name__ == '__main__':
66 sys.exit(main()) 66 sys.exit(main())
OLDNEW
« no previous file with comments | « mojo/public/tools/bindings/pylib/mojom_tests/support/run_bindings_generator.py ('k') | mojo/public/tools/prepend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698