Index: build/android/adb_profile_chrome.py |
diff --git a/build/android/adb_profile_chrome.py b/build/android/adb_profile_chrome.py |
index c8cea89ceb2406430293fed702220fae239ea433..c28c04000cc77edccfc48da80e371bd235762bb9 100755 |
--- a/build/android/adb_profile_chrome.py |
+++ b/build/android/adb_profile_chrome.py |
@@ -183,7 +183,7 @@ def _CompressFile(host_file, output): |
def _ArchiveFiles(host_files, output): |
- with zipfile.ZipFile(output, 'w') as z: |
+ with zipfile.ZipFile(output, 'w', zipfile.ZIP_DEFLATED) as z: |
for host_file in host_files: |
z.write(host_file) |
os.unlink(host_file) |