Bug 1442378 - part 1 - track size of xul.dll for Windows packages; r=jmaher

The "installer" on Windows is just a zip file, so all we need to do to
start tracking xul size is add xul.dll as an interesting file.
This commit is contained in:
Nathan Froyd 2018-03-02 08:34:39 -05:00
Родитель 680eecc668
Коммит 56727397b7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1581,7 +1581,7 @@ or run without that action (ie: --no-{action})"
else:
self.fatal("could not determine packageName")
interests = ['libxul.so', 'classes.dex', 'omni.ja']
interests = ['libxul.so', 'classes.dex', 'omni.ja', 'xul.dll']
installer = os.path.join(dirs['abs_obj_dir'], 'dist', packageName)
installer_size = 0
size_measurements = []