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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/Microsoft.Cpp.NaCl.default.props

Issue 10830151: VS Add-in more properties and improvements (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 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
OLDNEW
1  1 
2 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 2 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
4 <PropertyGroup> 4 <PropertyGroup>
5 <PlatformShortName>NaCl</PlatformShortName> 5 <PlatformShortName>NaCl</PlatformShortName>
6 <PlatformArchitecture>32</PlatformArchitecture> 6 <PlatformArchitecture>32</PlatformArchitecture>
7 7
8 <TargetArchitecture Condition="'$(TargetArchitecture)' == ''">x86_64</Target Architecture> 8 <TargetArchitecture Condition="'$(TargetArchitecture)' == ''">x86_64</Target Architecture>
9 9
10 <ToolchainName Condition="'$(ToolchainName)' == ''">newlib</ToolchainName> 10 <ToolchainName Condition="'$(ToolchainName)' == ''">newlib</ToolchainName>
11 <PlatformToolset>win_x86_$(ToolchainName)</PlatformToolset> 11 <PlatformToolset>win_x86_$(ToolchainName)</PlatformToolset>
12 12
13 <IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'!=''">$(In termediateOutputPath)</IntDir> 13 <IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'!=''">$(In termediateOutputPath)</IntDir>
14 <IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'==''">$(Pr ojectDir)Intermediate\$(ToolchainName)\</IntDir> 14 <IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'==''">$(Pr ojectDir)$(ToolchainName)\$(Configuration)\</IntDir>
15 <OutDir Condition="'$(OutDir)'==''">$(ProjectDir)$(ToolchainName)\</OutDir> 15 <OutDir Condition="'$(OutDir)'==''">$(ProjectDir)$(ToolchainName)\</OutDir>
16 16
17 <VSNaClSDKRoot Condition="'$(VSNaClSDKRoot)'==''">$(NACL_SDK_ROOT)\</VSNaClS DKRoot> 17 <VSNaClSDKRoot Condition="'$(VSNaClSDKRoot)'==''">$(NACL_SDK_ROOT)\</VSNaClS DKRoot>
18 <NaClManifestPath></NaClManifestPath> 18 <NaClWebServerPort Condition="'$(NaClWebServerPort)'==''">5103</NaClWebServe rPort>
19 <NaClIrtPath>$(VSNaClSDKRoot)\tools\irt_x86_64.nexe</NaClIrtPath> 19 <NaClManifestPath Condition="'$(NaClManifestPath)'==''"></NaClManifestPath>
20 <NaClIrtPath Condition="'$(NaClIrtPath)'==''">$(VSNaClSDKRoot)\tools\irt_x86 _64.nexe</NaClIrtPath>
20 </PropertyGroup> 21 </PropertyGroup>
21 </Project> 22 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698