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

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

Issue 11266051: Add PNaCl support for VS addin. (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: fix nits and tests 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="ConfigurationDirectories" 4 Name="ConfigurationDirectories"
5 DisplayName="VC++ Directories" 5 DisplayName="VC++ Directories"
6 Order="8" 6 Order="8"
7 PageTemplate="generic" 7 PageTemplate="generic"
8 Description="Tool search directories" 8 Description="Tool search directories"
9 xmlns="http://schemas.microsoft.com/build/2009/properties"> 9 xmlns="http://schemas.microsoft.com/build/2009/properties">
10 <Rule.Categories> 10 <Rule.Categories>
11 <Category Name="VC++" DisplayName="General" Description="Visual C++ Director ies" /> 11 <Category Name="VC++" DisplayName="General" Description="Visual C++ Director ies" />
12 </Rule.Categories> 12 </Rule.Categories>
13
14 <Rule.DataSource> 13 <Rule.DataSource>
15 <DataSource Persistence="ProjectFile" /> 14 <DataSource Persistence="ProjectFile" />
16 </Rule.DataSource> 15 </Rule.DataSource>
17 16 <StringListProperty Name="ExecutablePath" DisplayName="Executable Directories"
17 Description="Path to use when searching for executable fil es while building a VC++ project. Corresponds to environment variable PATH."
18 F1Keyword="VC.Project.VCDirectories.ExecutablePath"
19 Category="VC++" Separator=";" Subtype="folder" />
18 <StringListProperty Name="LibraryPath" DisplayName="Library Directories" 20 <StringListProperty Name="LibraryPath" DisplayName="Library Directories"
19 Description="Path to use when searching for library files while building a VC++ project. Corresponds to environment variable LIB." 21 Description="Path to use when searching for library files while building a VC++ project. Corresponds to environment variable LIB."
20 F1Keyword="VC.Project.VCDirectories.LibraryPath" 22 F1Keyword="VC.Project.VCDirectories.LibraryPath"
21 Category="VC++" Separator=";" Subtype="folder" /> 23 Category="VC++" Separator=";" Subtype="folder" />
22
23 <StringListProperty Name="IncludePath" DisplayName="Include Directories" 24 <StringListProperty Name="IncludePath" DisplayName="Include Directories"
24 Description="Path to use when searching for include files while building a VC++ project. Corresponds to environment variable INCLUDE." 25 Description="Path to use when searching for include files while building a VC++ project. Corresponds to environment variable INCLUDE."
25 F1Keyword="VC.Project.VCDirectories.IncludePath" 26 F1Keyword="VC.Project.VCDirectories.IncludePath"
26 Category="VC++" Separator=";" Subtype="folder" /> 27 Category="VC++" Separator=";" Subtype="folder" />
27
28 </Rule> 28 </Rule>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698