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

Side by Side Diff: build/android/pylib/utils/zip_utils.py

Issue 2392643003: Removes files from //build that we don't need (Closed)
Patch Set: Created 4 years, 2 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/pylib/utils/xvfb.py ('k') | build/android/pylib/valgrind_tools.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 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import logging
6 import os
7 import zipfile
8
9
10 def WriteToZipFile(zip_file, path, arc_path):
11 """Recursively write |path| to |zip_file| as |arc_path|.
12
13 zip_file: An open instance of zipfile.ZipFile.
14 path: An absolute path to the file or directory to be zipped.
15 arc_path: A relative path within the zip file to which the file or directory
16 located at |path| should be written.
17 """
18 if os.path.isdir(path):
19 for dir_path, _, file_names in os.walk(path):
20 dir_arc_path = os.path.join(arc_path, os.path.relpath(dir_path, path))
21 logging.debug('dir: %s -> %s', dir_path, dir_arc_path)
22 zip_file.write(dir_path, dir_arc_path, zipfile.ZIP_STORED)
23 for f in file_names:
24 file_path = os.path.join(dir_path, f)
25 file_arc_path = os.path.join(dir_arc_path, f)
26 logging.debug('file: %s -> %s', file_path, file_arc_path)
27 zip_file.write(file_path, file_arc_path, zipfile.ZIP_DEFLATED)
28 else:
29 logging.debug('file: %s -> %s', path, arc_path)
30 zip_file.write(path, arc_path, zipfile.ZIP_DEFLATED)
31
OLDNEW
« no previous file with comments | « build/android/pylib/utils/xvfb.py ('k') | build/android/pylib/valgrind_tools.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698