OLD | NEW |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
3 | 3 |
4 <?define EventSourceName = "chromoting" ?> | 4 <?define EventSourceName = "chromoting" ?> |
5 <?define ServiceName = "chromoting" ?> | 5 <?define ServiceName = "chromoting" ?> |
6 | 6 |
7 <!-- TODO(alexeypa): There strings should be localized, | 7 <!-- TODO(alexeypa): There strings should be localized, |
8 see http://crbug.com/121785 --> | 8 see http://crbug.com/121785 --> |
9 <?if $(var.Branding) ~= Chrome ?> | 9 <?if $(var.Branding) ~= Chrome ?> |
10 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> | 10 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 </Component> | 202 </Component> |
203 | 203 |
204 <Component Id="remote_assistance_host" Guid="*"> | 204 <Component Id="remote_assistance_host" Guid="*"> |
205 <File Id="remote_assistance_host.exe" | 205 <File Id="remote_assistance_host.exe" |
206 DiskId="1" | 206 DiskId="1" |
207 KeyPath="yes" | 207 KeyPath="yes" |
208 Name="remote_assistance_host.exe" | 208 Name="remote_assistance_host.exe" |
209 Vital="yes"/> | 209 Vital="yes"/> |
210 </Component> | 210 </Component> |
211 | 211 |
| 212 <Component Id="remote_assistance_host_uiaccess" Guid="*"> |
| 213 <File Id="remote_assistance_host_uiaccess.exe" |
| 214 DiskId="1" |
| 215 KeyPath="yes" |
| 216 Name="remote_assistance_host_uiaccess.exe" |
| 217 Vital="yes"/> |
| 218 </Component> |
| 219 |
212 <Component Id="native_messaging_host_manifest" Guid="*"> | 220 <Component Id="native_messaging_host_manifest" Guid="*"> |
213 <File Id="com.google.chrome.remote_desktop.json" | 221 <File Id="com.google.chrome.remote_desktop.json" |
214 DiskId="1" | 222 DiskId="1" |
215 KeyPath="yes" | 223 KeyPath="yes" |
216 Name="com.google.chrome.remote_desktop.json" | 224 Name="com.google.chrome.remote_desktop.json" |
217 Vital="yes"/> | 225 Vital="yes"/> |
218 </Component> | 226 </Component> |
219 | 227 |
220 <Component Id="remote_assistance_host_manifest" Guid="*"> | 228 <Component Id="remote_assistance_host_manifest" Guid="*"> |
221 <File Id="com.google.chrome.remote_assistance.json" | 229 <File Id="com.google.chrome.remote_assistance.json" |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
613 <ComponentRef Id="delete_usagestats"/> | 621 <ComponentRef Id="delete_usagestats"/> |
614 <?if $(var.OfficialBuild) != 0 ?> | 622 <?if $(var.OfficialBuild) != 0 ?> |
615 <ComponentRef Id="omaha_registration"/> | 623 <ComponentRef Id="omaha_registration"/> |
616 <?endif?> | 624 <?endif?> |
617 <ComponentRef Id="icudtl"/> | 625 <ComponentRef Id="icudtl"/> |
618 <ComponentRef Id="native_messaging_host_manifest"/> | 626 <ComponentRef Id="native_messaging_host_manifest"/> |
619 <ComponentRef Id="native_messaging_host_registry"/> | 627 <ComponentRef Id="native_messaging_host_registry"/> |
620 <ComponentRef Id="remote_assistance_host"/> | 628 <ComponentRef Id="remote_assistance_host"/> |
621 <ComponentRef Id="remote_assistance_host_manifest"/> | 629 <ComponentRef Id="remote_assistance_host_manifest"/> |
622 <ComponentRef Id="remote_assistance_host_registry"/> | 630 <ComponentRef Id="remote_assistance_host_registry"/> |
| 631 <ComponentRef Id="remote_assistance_host_uiaccess"/> |
623 <ComponentRef Id="remote_security_key"/> | 632 <ComponentRef Id="remote_security_key"/> |
624 <ComponentRef Id="remote_security_key_registration"/> | 633 <ComponentRef Id="remote_security_key_registration"/> |
625 <ComponentRef Id="remoting_native_messaging_host"/> | 634 <ComponentRef Id="remoting_native_messaging_host"/> |
626 <ComponentRef Id="remoting_core"/> | 635 <ComponentRef Id="remoting_core"/> |
627 <ComponentRef Id="remoting_desktop"/> | 636 <ComponentRef Id="remoting_desktop"/> |
628 <ComponentRef Id="remoting_host"/> | 637 <ComponentRef Id="remoting_host"/> |
629 <ComponentRef Id="remoting_lib"/> | 638 <ComponentRef Id="remoting_lib"/> |
630 <ComponentRef Id="remoting_pairing_registry"/> | 639 <ComponentRef Id="remoting_pairing_registry"/> |
631 <ComponentRef Id="remoting_start_host"/> | 640 <ComponentRef Id="remoting_start_host"/> |
632 <ComponentRef Id="sawbuck_provider"/> | 641 <ComponentRef Id="sawbuck_provider"/> |
(...skipping 12 matching lines...) Expand all Loading... |
645 <!-- Set the service name and description --> | 654 <!-- Set the service name and description --> |
646 <Custom Action="set_service_display_name" Before="InstallInitialize"/> | 655 <Custom Action="set_service_display_name" Before="InstallInitialize"/> |
647 <Custom Action="set_service_description" Before="InstallInitialize"/> | 656 <Custom Action="set_service_description" Before="InstallInitialize"/> |
648 | 657 |
649 <!-- Schedule RemoveExistingProducts before installing any files. | 658 <!-- Schedule RemoveExistingProducts before installing any files. |
650 See http://msdn.microsoft.com/en-us/library/aa371197.aspx. --> | 659 See http://msdn.microsoft.com/en-us/library/aa371197.aspx. --> |
651 <RemoveExistingProducts After="InstallInitialize" /> | 660 <RemoveExistingProducts After="InstallInitialize" /> |
652 </InstallExecuteSequence> | 661 </InstallExecuteSequence> |
653 </Product> | 662 </Product> |
654 </Wix> | 663 </Wix> |
OLD | NEW |