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

Side by Side Diff: remoting/host/installer/chromoting.wxs

Issue 10081026: Chromoting Host installation should take into account both buildtype% and branding%. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | remoting/remoting.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <?ifdef OfficialBuild ?> 7 <?if $(var.Branding) ~= Chrome ?>
8 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> 8 <?define ChromotingHost = "Chrome Remote Desktop Host" ?>
9 <?define FirewallName = "Chrome Remote Desktop Host" ?> 9 <?define FirewallName = "Chrome Remote Desktop Host" ?>
10 <?define Manufacturer = "Google Inc." ?> 10 <?define Manufacturer = "Google Inc." ?>
11 <?else?> 11 <?else?>
12 <?define ChromotingHost = "Chromoting Host" ?> 12 <?define ChromotingHost = "Chromoting Host" ?>
13 <?define FirewallName = "Chromoting Host" ?> 13 <?define FirewallName = "Chromoting Host" ?>
14 <?define Manufacturer = "The Chromium Authors" ?> 14 <?define Manufacturer = "The Chromium Authors" ?>
15 <?endif?> 15 <?endif?>
16 16
17 <?define OmahaAppid = "{b210701e-ffc4-49e3-932b-370728c72662}" ?> 17 <?define OmahaAppid = "{b210701e-ffc4-49e3-932b-370728c72662}" ?>
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 327
328 <InstallExecuteSequence> 328 <InstallExecuteSequence>
329 <Custom Action="query_auto_start_service" Before="InstallInitialize"/> 329 <Custom Action="query_auto_start_service" Before="InstallInitialize"/>
330 <Custom Action="set_auto_start_service" After="StartServices"> 330 <Custom Action="set_auto_start_service" After="StartServices">
331 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]> 331 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]>
332 </Custom> 332 </Custom>
333 </InstallExecuteSequence> 333 </InstallExecuteSequence>
334 334
335 </Product> 335 </Product>
336 </Wix> 336 </Wix>
OLDNEW
« no previous file with comments | « no previous file | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698