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

Unified Diff: build/scripts/slave/chromium/sizes.py

Issue 12422013: Output the size of npchrome_frame.dll during the sizes step for inclusion in the sizes perf dashboa… (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/
Patch Set: Created 7 years, 9 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: build/scripts/slave/chromium/sizes.py
===================================================================
--- build/scripts/slave/chromium/sizes.py (revision 189813)
+++ build/scripts/slave/chromium/sizes.py (working copy)
@@ -307,6 +307,7 @@
chrome_dll = os.path.join(target_dir, 'chrome.dll')
chrome_exe = os.path.join(target_dir, 'chrome.exe')
mini_installer_exe = os.path.join(target_dir, 'mini_installer.exe')
+ npchrome_frame_dll = os.path.join(target_dir, 'npchrome_frame.dll')
setup_exe = os.path.join(target_dir, 'setup.exe')
result = 0
@@ -318,6 +319,9 @@
fmt = 'RESULT mini_installer.exe: mini_installer.exe= %s bytes'
print fmt % get_size(mini_installer_exe)
+ fmt = 'RESULT npchrome_frame.dll: npchrome_frame.dll= %s bytes'
+ print fmt % get_size(npchrome_frame_dll)
+
print 'RESULT setup.exe: setup.exe= %s bytes' % get_size(setup_exe)
return result
« 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