Index: zip_build.py |
=================================================================== |
--- zip_build.py (revision 24760) |
+++ zip_build.py (working copy) |
@@ -68,6 +68,11 @@ |
zip_file_list = [file for file in os.listdir(build_dir) |
if not re.match(file_filter, file)] |
+ # Special case for chrome. Add back all the chrome*.pdb files to the list. |
+ # TODO(nsylvain): This should really be defined somewhere else. |
+ zip_file_list.extend([file for file in os.listdir(build_dir) |
+ if re.match('^chrome.+\.pdb$', file)]) |
+ |
if chromium_utils.IsWindows(): |
# Remove obj or lib dir entries |
zip_file_list.remove('obj') |