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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/Props/nacl_general_ps.xml

Issue 11359218: [NaCl Addin] Add new property for setting name of index page. (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 1 month 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <Rule 3 <Rule
4 Name="ConfigurationGeneral" 4 Name="ConfigurationGeneral"
5 DisplayName="General" 5 DisplayName="General"
6 PageTemplate="generic" 6 PageTemplate="generic"
7 Description="General" 7 Description="General"
8 xmlns="http://schemas.microsoft.com/build/2009/properties"> 8 xmlns="http://schemas.microsoft.com/build/2009/properties">
9 <Rule.Categories> 9 <Rule.Categories>
10 <Category Name="General" DisplayName="General" Description="General" /> 10 <Category Name="General" DisplayName="General" Description="General" />
(...skipping 30 matching lines...) Expand all
41 41
42 <StringProperty Name="NaClWebServerPort" DisplayName="Web Server Port" 42 <StringProperty Name="NaClWebServerPort" DisplayName="Web Server Port"
43 Description="Specifies the port number to use while hosting th e nexe" 43 Description="Specifies the port number to use while hosting th e nexe"
44 Category="NativeClient" Default="" 44 Category="NativeClient" Default=""
45 F1Keyword="VC.Project.VCConfiguration.NaClWebServerPort"> 45 F1Keyword="VC.Project.VCConfiguration.NaClWebServerPort">
46 <StringProperty.DataSource> 46 <StringProperty.DataSource>
47 <DataSource Persistence="ProjectFile" Label="" /> 47 <DataSource Persistence="ProjectFile" Label="" />
48 </StringProperty.DataSource> 48 </StringProperty.DataSource>
49 </StringProperty> 49 </StringProperty>
50 50
51 <StringProperty Name="NaClIndexHTML" DisplayName="Index page of NaCl Applicati on"
52 Description="Specifies the name of the web page that hosts the NaCl content"
53 Category="NativeClient" Default=""
54 F1Keyword="VC.Project.VCConfiguration.NaClIndexHTML">
55 </StringProperty>
56
51 <EnumProperty Name="ToolchainName" DisplayName="Toolchain" Category="NativeCli ent"> 57 <EnumProperty Name="ToolchainName" DisplayName="Toolchain" Category="NativeCli ent">
52 <EnumValue Name="newlib" DisplayName="newlib" /> 58 <EnumValue Name="newlib" DisplayName="newlib" />
53 <EnumValue Name="glibc" DisplayName="glibc" /> 59 <EnumValue Name="glibc" DisplayName="glibc" />
54 </EnumProperty> 60 </EnumProperty>
55 61
56 <StringProperty Name="OutDir" DisplayName="Output Directory" 62 <StringProperty Name="OutDir" DisplayName="Output Directory"
57 Description="Specifies a relative path to the output file dire ctory; can include environment variables." 63 Description="Specifies a relative path to the output file dire ctory; can include environment variables."
58 Category="General" Default="$(SolutionDir)\$(Platform)\$(Toolc hain)\$(Configuration)\" 64 Category="General" Default="$(SolutionDir)\$(Platform)\$(Toolc hain)\$(Configuration)\"
59 Subtype="folder" 65 Subtype="folder"
60 F1Keyword="VC.Project.VCConfiguration.OutputDirectory"> 66 F1Keyword="VC.Project.VCConfiguration.OutputDirectory">
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 Description="Specifies the build log file to write to when bui ld logging is enabled." 112 Description="Specifies the build log file to write to when bui ld logging is enabled."
107 F1Keyword="VC.Project.VCConfiguration.BuildLogFile" 113 F1Keyword="VC.Project.VCConfiguration.BuildLogFile"
108 Category="General" Default="$(ProjectDir)\$(MSBuildProjectName ).log" 114 Category="General" Default="$(ProjectDir)\$(MSBuildProjectName ).log"
109 Subtype="file"> 115 Subtype="file">
110 <StringProperty.DataSource> 116 <StringProperty.DataSource>
111 <DataSource Persistence="ProjectFile" ItemType="BuildLog" P ersistedName="Path" /> 117 <DataSource Persistence="ProjectFile" ItemType="BuildLog" P ersistedName="Path" />
112 </StringProperty.DataSource> 118 </StringProperty.DataSource>
113 </StringProperty> 119 </StringProperty>
114 120
115 </Rule> 121 </Rule>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698