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

Unified Diff: remoting/host/installer/win/chromoting.wxs

Issue 398173002: Enable x64 Chromoting host and installer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Always define sas_dll_path Created 6 years, 5 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 | « build/common.gypi ('k') | remoting/remoting_host_win.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/installer/win/chromoting.wxs
diff --git a/remoting/host/installer/win/chromoting.wxs b/remoting/host/installer/win/chromoting.wxs
index 2dfb8cc8adfe69c25cf16929f9d2a75a2a503f6f..9324e48916eb400d33c3838720eb2d11977ecd0b 100644
--- a/remoting/host/installer/win/chromoting.wxs
+++ b/remoting/host/installer/win/chromoting.wxs
@@ -18,6 +18,12 @@
<?define Manufacturer = "The Chromium Authors" ?>
<?endif?>
+ <?if $(sys.BUILDARCH) = "x64" ?>
+ <?define ProgramFilesFolderForPlatform = "ProgramFiles64Folder" ?>
+ <?else?>
+ <?define ProgramFilesFolderForPlatform = "ProgramFilesFolder" ?>
+ <?endif?>
+
<?if $(var.OfficialBuild) != 0 ?>
<?define ChromotingKeyPath = "Google\Chrome Remote Desktop" ?>
<?else?>
@@ -134,7 +140,7 @@
<Media Id="1" Cabinet="chromoting.cab" EmbedCab="yes"/>
<Directory Id="TARGETDIR" Name="SourceDir">
- <Directory Id="ProgramFilesFolder">
+ <Directory Id="$(var.ProgramFilesFolderForPlatform)">
<?if $(var.OfficialBuild) != 0 ?>
<Directory Id="program_files_google" Name="Google">
<Directory Id="chromoting" Name="Chrome Remote Desktop">
@@ -567,8 +573,24 @@
<CreateFolder/>
</Component>
- <!-- Register with Sawbuck. See http://code.google.com/p/sawbuck/. -->
- <Component Id="sawbuck_provider" Guid="*">
+ <!-- Delete the usagestats flag to reset the crash dump reporting settings
+ for existing users. -->
+ <Component Id="delete_usagestats"
+ Guid="5c73f2b9-b865-426f-81cc-90a27ebb54aa"
+ KeyPath="yes">
+ <Condition>BROKENUSAGESTATSVERSION</Condition>
+ <RemoveRegistryValue
+ Id="usagestats"
+ Key="SOFTWARE\Google\Update\ClientStateMedium\$(var.OmahaAppid)"
+ Name="usagestats"
+ Root="HKLM" />
+ </Component>
+
+ </DirectoryRef>
+
+ <!-- Register with Sawbuck. See http://code.google.com/p/sawbuck/. -->
+ <DirectoryRef Id="TARGETDIR">
+ <Component Id="sawbuck_provider" Guid="*" Win64="no">
<RegistryKey Root="HKLM"
Key="SOFTWARE\Google\Sawbuck\Providers">
<RegistryKey Key="{2db51ca1-4fd8-4b88-b5a2-fb8606b66b02}"
@@ -587,20 +609,6 @@
</RegistryKey>
</RegistryKey>
</Component>
-
- <!-- Delete the usagestats flag to reset the crash dump reporting settings
- for existing users. -->
- <Component Id="delete_usagestats"
- Guid="5c73f2b9-b865-426f-81cc-90a27ebb54aa"
- KeyPath="yes">
- <Condition>BROKENUSAGESTATSVERSION</Condition>
- <RemoveRegistryValue
- Id="usagestats"
- Key="SOFTWARE\Google\Update\ClientStateMedium\$(var.OmahaAppid)"
- Name="usagestats"
- Root="HKLM" />
- </Component>
-
</DirectoryRef>
<DirectoryRef Id="config_files">
« no previous file with comments | « build/common.gypi ('k') | remoting/remoting_host_win.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698