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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 </Custom> | 410 </Custom> |
411 <Custom Action="set_service_display_name" Before="InstallInitialize"> | 411 <Custom Action="set_service_display_name" Before="InstallInitialize"> |
412 <![CDATA[VersionNT >= 600]]> | 412 <![CDATA[VersionNT >= 600]]> |
413 </Custom> | 413 </Custom> |
414 <Custom Action="set_service_description" Before="InstallInitialize"> | 414 <Custom Action="set_service_description" Before="InstallInitialize"> |
415 <![CDATA[VersionNT >= 600]]> | 415 <![CDATA[VersionNT >= 600]]> |
416 </Custom> | 416 </Custom> |
417 </InstallExecuteSequence> | 417 </InstallExecuteSequence> |
418 </Product> | 418 </Product> |
419 </Wix> | 419 </Wix> |
OLD | NEW |