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

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

Issue 12222002: MSVC manifests should use processorArchitecture="*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | « chrome/app/chrome.exe.manifest ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/win/create_installer_archive.py
===================================================================
--- chrome/tools/build/win/create_installer_archive.py (revision 180783)
+++ chrome/tools/build/win/create_installer_archive.py (working copy)
@@ -452,7 +452,7 @@
"<dependency>"
"<dependentAssembly>"
"<assemblyIdentity type='win32' name='chrome.{dll_name}' "
- "version='0.0.0.0' processorArchitecture='x86' language='*'/>"
+ "version='0.0.0.0' processorArchitecture='*' language='*'/>"
"</dependentAssembly>"
"</dependency>".format(dll_name=name))
@@ -476,7 +476,7 @@
"<assembly\n"
" xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>\n"
" <assemblyIdentity name='chrome.{dll_name}' version='0.0.0.0'\n"
- " type='win32' processorArchitecture='x86'/>\n"
+ " type='win32' processorArchitecture='*'/>\n"
" <file name='{dll_name}.dll'/>\n"
"</assembly>".format(dll_name=name))
« no previous file with comments | « chrome/app/chrome.exe.manifest ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698