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

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

Issue 14122017: [VS Addin] Add visual studio 2012 support (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 6 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 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <Import Project="$(VCTargetsPath)\NaCl\ImportBefore\*.props" Condition="Exists ('$(VCTargetsPath)\NaCl\ImportBefore')" /> 2 <Import Project="$(VCTargetsPath)\NaCl\ImportBefore\*.props" Condition="Exists ('$(VCTargetsPath)\NaCl\ImportBefore')" />
3 <Import Condition="'$(ToolchainName)' == 'newlib' AND (exists('$(VCTargetsPath )\NaCl\PlatformToolsets\win_x86_newlib\Microsoft.Cpp.NaCl.win_x86_newlib.props') )" Project="$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_newlib\Microsoft.Cpp. NaCl.win_x86_newlib.props"/> 3 <Import Condition="'$(ToolchainName)' == 'newlib' AND (exists('$(VCTargetsPath )\NaCl\PlatformToolsets\win_x86_newlib\Microsoft.Cpp.NaCl.win_x86_newlib.props') )" Project="$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_newlib\Microsoft.Cpp. NaCl.win_x86_newlib.props"/>
4 <Import Condition="'$(ToolchainName)' == 'glibc' AND (exists('$(VCTargetsPath) \NaCl\PlatformToolsets\win_x86_glibc\Microsoft.Cpp.NaCl.win_x86_glibc.props'))" Project="$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_glibc\Microsoft.Cpp.NaCl .win_x86_glibc.props"/> 4 <Import Condition="'$(ToolchainName)' == 'glibc' AND (exists('$(VCTargetsPath) \NaCl\PlatformToolsets\win_x86_glibc\Microsoft.Cpp.NaCl.win_x86_glibc.props'))" Project="$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_glibc\Microsoft.Cpp.NaCl .win_x86_glibc.props"/>
5 5
6 <Import Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.Platform.props')" Pr oject="$(VCTargetsPath)\Microsoft.Cpp.Platform.props"/>
7
6 <PropertyGroup> 8 <PropertyGroup>
7 <DebuggerFlavor Condition="'$(DebuggerFlavor)'==''">WindowsLocalDebugger</De buggerFlavor> 9 <DebuggerFlavor Condition="'$(DebuggerFlavor)'==''">WindowsLocalDebugger</De buggerFlavor>
8 <IntDir Condition="'$(IntDir)'=='DUMMY'">$(Platform)\$(ToolchainName)\$(Conf iguration)\</IntDir> 10 <IntDir Condition="'$(IntDir)'=='DUMMY'">$(Platform)\$(ToolchainName)\$(Conf iguration)\</IntDir>
9 <OutDir Condition="'$(OutDir)'=='DUMMY'">$(ProjectDir)$(Platform)\$(Toolchai nName)\$(Configuration)\</OutDir> 11 <OutDir Condition="'$(OutDir)'=='DUMMY'">$(ProjectDir)$(Platform)\$(Toolchai nName)\$(Configuration)\</OutDir>
10 </PropertyGroup> 12 </PropertyGroup>
11 13
12 <PropertyGroup> 14 <PropertyGroup>
13 <IgnoreImportLibrary>true</IgnoreImportLibrary> 15 <IgnoreImportLibrary>true</IgnoreImportLibrary>
14 <GenerateManifest>false</GenerateManifest> 16 <GenerateManifest>false</GenerateManifest>
15 </PropertyGroup> 17 </PropertyGroup>
16 18
17 <PropertyGroup Condition="'$(ConfigurationType)' == 'Application'"> 19 <PropertyGroup Condition="'$(ConfigurationType)' == 'Application'">
18 <LinkCompiled>true</LinkCompiled> 20 <LinkCompiled>true</LinkCompiled>
19 <TargetExt>.nexe</TargetExt> 21 <TargetExt>.nexe</TargetExt>
20 </PropertyGroup> 22 </PropertyGroup>
21 23
22 <PropertyGroup Condition="'$(ConfigurationType)' == 'DynamicLibrary'"> 24 <PropertyGroup Condition="'$(ConfigurationType)' == 'DynamicLibrary'">
23 <LinkCompiled>true</LinkCompiled> 25 <LinkCompiled>true</LinkCompiled>
24 <TargetExt>.so</TargetExt> 26 <TargetExt>.so</TargetExt>
25 </PropertyGroup> 27 </PropertyGroup>
26 28
27 <PropertyGroup Condition="'$(ConfigurationType)' == 'StaticLibrary'"> 29 <PropertyGroup Condition="'$(ConfigurationType)' == 'StaticLibrary'">
28 <LibCompiled>true</LibCompiled> 30 <LibCompiled>true</LibCompiled>
29 <TargetExt>.a</TargetExt> 31 <TargetExt>.a</TargetExt>
30 </PropertyGroup> 32 </PropertyGroup>
31 33
32
33 <Import Project="$(VCTargetsPath)\NaCl\NaCl.Paths.default.props" /> 34 <Import Project="$(VCTargetsPath)\NaCl\NaCl.Paths.default.props" />
34 <Import Project="$(VCTargetsPath)\NaCl\ImportAfter\*.props" Condition="Exists( '$(VCTargetsPath)\NaCl\ImportAfter')" /> 35 <Import Project="$(VCTargetsPath)\NaCl\ImportAfter\*.props" Condition="Exists( '$(VCTargetsPath)\NaCl\ImportAfter')" />
35 </Project> 36 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698