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

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

Issue 117413007: Stop tracking npchrome_frame.dll file size. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/tools/build.git@master
Patch Set: Created 7 years 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: scripts/slave/chromium/sizes.py
diff --git a/scripts/slave/chromium/sizes.py b/scripts/slave/chromium/sizes.py
index a8516a16d3f85ad171d6b0075eb9dff1fd621041..6eb04989aa83b6195ef606a4ef8d79a6ff4f2d6b 100755
--- a/scripts/slave/chromium/sizes.py
+++ b/scripts/slave/chromium/sizes.py
@@ -357,7 +357,6 @@ def main_win(options, args):
chrome_child_dll = os.path.join(target_dir, 'chrome_child.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')
libpeerconnection_dll = os.path.join(target_dir, 'libpeerconnection.dll')
@@ -374,10 +373,6 @@ def main_win(options, args):
fmt = 'RESULT mini_installer.exe: mini_installer.exe= %s bytes'
print fmt % get_size(mini_installer_exe)
- if os.path.exists(npchrome_frame_dll):
- fmt = 'RESULT npchrome_frame.dll: npchrome_frame.dll= %s bytes'
- print fmt % get_size(npchrome_frame_dll)
-
if os.path.exists(setup_exe):
print 'RESULT setup.exe: setup.exe= %s bytes' % get_size(setup_exe)
« 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