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

Unified Diff: zip_build.py

Issue 187012: Add chrome_dll.pdb and chrome_exe.pdb to the zip file we... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/tools/buildbot/scripts/slave/
Patch Set: '' Created 11 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698