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

Unified Diff: chrome/tools/build/win/create_installer_archive.py

Issue 53793002: Initial implementation of Chrome Early Loading Framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: config fix Created 7 years, 1 month 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
Index: chrome/tools/build/win/create_installer_archive.py
diff --git a/chrome/tools/build/win/create_installer_archive.py b/chrome/tools/build/win/create_installer_archive.py
index f5a99987adb5a204e19d12051e124a058845edf9..f16735b5c990deb4762fc572b04371b7c8774edb 100755
--- a/chrome/tools/build/win/create_installer_archive.py
+++ b/chrome/tools/build/win/create_installer_archive.py
@@ -180,6 +180,9 @@ def Readconfig(input_file, current_version):
current_version)
config = ConfigParser.SafeConfigParser(variables)
config.read(input_file)
+ # Add version assembly manifest to config here, since we cannot hardcode the
+ # file name in chrome.release.
+ config.set('GENERAL', '%s.manifest' % current_version, '%(VersionDir)s\\')
grt (UTC plus 2) 2013/11/07 03:04:23 this scares me since it involves magic. reading ch
return config
def RunSystemCommand(cmd, **kw):

Powered by Google App Engine
This is Rietveld 408576698