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

Side by Side Diff: installer/win/o3d.wxs

Issue 326001: Adding support for windows safari. This requires registering the o3d plugin w... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 2 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 | plugin/cross/config_common.cc » ('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' encoding='windows-1252'?> 1 <?xml version='1.0' encoding='windows-1252'?>
2 2
3 <!-- 3 <!--
4 Copyright 2009, Google Inc. 4 Copyright 2009, Google Inc.
5 All rights reserved. 5 All rights reserved.
6 6
7 Redistribution and use in source and binary forms, with or without 7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are 8 modification, are permitted provided that the following conditions are
9 met: 9 met:
10 10
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 <!-- Copy the plugin to the mozilla plugin folder under 69 <!-- Copy the plugin to the mozilla plugin folder under
70 'Documents and Settings' --> 70 'Documents and Settings' -->
71 <Directory Id='TARGETDIR' Name='SourceDir'> 71 <Directory Id='TARGETDIR' Name='SourceDir'>
72 <Directory Id='AppDataFolder' Name='QFiles'> 72 <Directory Id='AppDataFolder' Name='QFiles'>
73 <Directory Id='pu.MozillaDir' Name='Mozilla'> 73 <Directory Id='pu.MozillaDir' Name='Mozilla'>
74 <Directory Id='pu.FirefoxPluginsDir' Name='plugins'> 74 <Directory Id='pu.FirefoxPluginsDir' Name='plugins'>
75 <Component Id='pu.Npdll' Guid='$(var.NppComponentGuid)'> 75 <Component Id='pu.Npdll' Guid='$(var.NppComponentGuid)'>
76 <File Id='pu.GoogleNpapiDll.dll' Name='npo3d.dll' 76 <File Id='pu.GoogleNpapiDll.dll' Name='npo3d.dll'
77 LongName='npo3dautoplugin.dll' DiskId='1' 77 LongName='npo3dautoplugin.dll' DiskId='1'
78 Source='$(var.NPPluginPath)' Vital='yes' /> 78 Source='$(var.NPPluginPath)' Vital='yes' />
79 <Registry Id='pu.NpapiPlugin' Root='HKCU'
80 Key='Software\MozillaPlugins\@google.com/O3DPlugin'>
81 <Registry Id='pu.NpapiPluginPath' Type='string'
82 Action='write' Name='Path' Value='[pu.FirefoxPluginsDir]npo3 dautoplugin.dll' />
83 <Registry Id='pu.NpapiPluginName' Type='string'
84 Action='write' Name='ProductName' Value='O3D Plugin' />
85 <Registry Id='pu.NpapiPluginDescription' Type='string'
86 Action='write' Name='Description' Value='O3D Plugin' />
87 <Registry Id='pu.NpapiPluginVendor' Type='string'
88 Action='write' Name='Vendor' Value='Google' />
89 <Registry Id='pu.NpapiPluginVersion' Type='string'
90 Action='write' Name='Version' Value='$(var.NppVersion)' />
91 </Registry>
79 <Condition>NOT (ALLUSERS)</Condition> 92 <Condition>NOT (ALLUSERS)</Condition>
80 </Component> 93 </Component>
81 <?if $(var.IncludeSoftwareRenderer) = True ?> 94 <?if $(var.IncludeSoftwareRenderer) = True ?>
82 <Directory Id='O3DPrivateDllDir' Name='O3D' 95 <Directory Id='O3DPrivateDllDir' Name='O3D'
83 LongName='O3DExtras'> 96 LongName='O3DExtras'>
84 <Component Id='SoftwareRenderer' 97 <Component Id='SoftwareRenderer'
85 Guid='$(var.SoftwareRendererGuid)'> 98 Guid='$(var.SoftwareRendererGuid)'>
86 <File Id='renderer' LongName="swiftshader_d3d9.dll" 99 <File Id='renderer' LongName="swiftshader_d3d9.dll"
87 Vital='yes' DiskId='1' Name="ss_d3d9.dll" 100 Vital='yes' DiskId='1' Name="ss_d3d9.dll"
88 src='$(var.SoftwareRendererPath)' /> 101 src='$(var.SoftwareRendererPath)' />
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 (REMOVE="ALL") OR UPGRADING OR UPGRADING_DEPR 364 (REMOVE="ALL") OR UPGRADING OR UPGRADING_DEPR
352 </UnregisterClassInfo> 365 </UnregisterClassInfo>
353 <RemoveExistingProducts After='InstallInitialize'> 366 <RemoveExistingProducts After='InstallInitialize'>
354 UPGRADING OR UPGRADING_DEPR 367 UPGRADING OR UPGRADING_DEPR
355 </RemoveExistingProducts> 368 </RemoveExistingProducts>
356 <RegisterClassInfo/> 369 <RegisterClassInfo/>
357 </InstallExecuteSequence> 370 </InstallExecuteSequence>
358 371
359 </Product> 372 </Product>
360 </Wix> 373 </Wix>
OLDNEW
« no previous file with comments | « no previous file | plugin/cross/config_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698