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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/PNaCl/Microsoft.Cpp.PNaCl.targets

Issue 11367026: [VS Addin] Add PNaCl configs to examples (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 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbui ld/2003"> 1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbui ld/2003">
2 <Import Project="$(VCTargetsPath)\NaCl\ImportBefore\*.targets" Condition="Exis ts('$(VCTargetsPath)\NaCl\ImportBefore')" /> 2 <Import Project="$(VCTargetsPath)\NaCl\ImportBefore\*.targets" Condition="Exis ts('$(VCTargetsPath)\NaCl\ImportBefore')" />
3 <Import Project="$(VCTargetsPath)\Microsoft.CppCommon.targets" /> 3 <Import Project="$(VCTargetsPath)\Microsoft.CppCommon.targets" />
4 4
5 <UsingTask TaskName="NaClCompile" AssemblyFile="$(VCTargetsPath)\NaCl\NaCl.Bui ld.CPPTasks.dll" /> 5 <UsingTask TaskName="NaClCompile" AssemblyFile="$(VCTargetsPath)\NaCl\NaCl.Bui ld.CPPTasks.dll" />
6 <UsingTask TaskName="NaClLink" AssemblyFile="$(VCTargetsPath)\NaCl\NaCl.Build. CPPTasks.dll" /> 6 <UsingTask TaskName="NaClLink" AssemblyFile="$(VCTargetsPath)\NaCl\NaCl.Build. CPPTasks.dll" />
7 <UsingTask TaskName="NaClLib" AssemblyFile="$(VCTargetsPath)\NaCl\NaCl.Build.C PPTasks.dll" /> 7 <UsingTask TaskName="NaClLib" AssemblyFile="$(VCTargetsPath)\NaCl\NaCl.Build.C PPTasks.dll" />
8 <UsingTask TaskName="VCMessage" AssemblyName="Microsoft.Build.CppTasks.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> 8 <UsingTask TaskName="VCMessage" AssemblyName="Microsoft.Build.CppTasks.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
9 9
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 <PropertyGroup> 48 <PropertyGroup>
49 <Link_MinimalRebuildFromTracking Condition="'@(Link->AnyHaveMetadataValue( 'MinimalRebuildFromTracking', 'false'))' == 'true'">false</Link_MinimalRebuildFr omTracking> 49 <Link_MinimalRebuildFromTracking Condition="'@(Link->AnyHaveMetadataValue( 'MinimalRebuildFromTracking', 'false'))' == 'true'">false</Link_MinimalRebuildFr omTracking>
50 <Link_MinimalRebuildFromTracking Condition="'$(BuildType)' != 'Build' or ' $(ForceRebuild)' == 'true'" >false</Link_MinimalRebuildFromTracking> 50 <Link_MinimalRebuildFromTracking Condition="'$(BuildType)' != 'Build' or ' $(ForceRebuild)' == 'true'" >false</Link_MinimalRebuildFromTracking>
51 <Link_MinimalRebuildFromTracking Condition="'$(Link_MinimalRebuildFromTrac king)' == ''">true</Link_MinimalRebuildFromTracking> 51 <Link_MinimalRebuildFromTracking Condition="'$(Link_MinimalRebuildFromTrac king)' == ''">true</Link_MinimalRebuildFromTracking>
52 </PropertyGroup> 52 </PropertyGroup>
53 53
54 <NaClLink BuildingInIDE ="$(BuildingInsideVisualStudio)" 54 <NaClLink BuildingInIDE ="$(BuildingInsideVisualStudio)"
55 Sources ="@(Link)" 55 Sources ="@(Link)"
56 OutputCommandLine ="%(Link.OutputCommandLine)" 56 OutputCommandLine ="%(Link.OutputCommandLine)"
57 NaClLinkerPath ="$(VSNaClSDKRoot)toolchain\win_x86 _pnacl\newlib\bin\pnacl-clang++.bat" 57 NaClLinkerPath ="$(VSNaClSDKRoot)toolchain\win_x86 _pnacl\newlib\bin\pnacl-clang++.bat"
58 CreateNMFPath ="$(VSNaClSDKRoot)tools\create_nmf. py"
58 MinimalRebuildFromTracking ="$(Link_MinimalRebuildFromTracking )" 59 MinimalRebuildFromTracking ="$(Link_MinimalRebuildFromTracking )"
59 OutputFile ="%(Link.OutputFile)" 60 OutputFile ="%(Link.OutputFile)"
60 PropertiesFile ="$(VCTargetsPath)\NaCl\Props\pnacl _link.xml" 61 PropertiesFile ="$(VCTargetsPath)\NaCl\Props\pnacl _link.xml"
61 TLogReadFiles ="@(LinkTLogReadFiles)" 62 TLogReadFiles ="@(LinkTLogReadFiles)"
62 TLogWriteFiles ="@(LinkTLogWriteFiles)" 63 TLogWriteFiles ="@(LinkTLogWriteFiles)"
63 ToolchainName ="$(ToolchainName)" 64 ToolchainName ="$(ToolchainName)"
65 CreateNMF ="%(Link.CreateNMF)"
66 ProjectName ="$(ProjectName)"
64 Platform ="$(Platform)" 67 Platform ="$(Platform)"
65 TranslateX86 ="%(Link.TranslateX86)" 68 TranslateX86 ="%(Link.TranslateX86)"
66 TranslateX64 ="%(Link.TranslateX64)" 69 TranslateX64 ="%(Link.TranslateX64)"
67 TranslateARM ="%(Link.TranslateARM)" 70 TranslateARM ="%(Link.TranslateARM)"
68 TrackFileAccess ="$(TrackFileAccess)" 71 TrackFileAccess ="$(TrackFileAccess)"
69 TrackerLogDirectory ="%(Link.TrackerLogDirectory)" 72 TrackerLogDirectory ="%(Link.TrackerLogDirectory)"
70 ConfigurationType ="$(ConfigurationType)"> 73 ConfigurationType ="$(ConfigurationType)">
71 <Output TaskParameter="SkippedExecution" PropertyName="LinkSkippedExecutio n" /> 74 <Output TaskParameter="SkippedExecution" PropertyName="LinkSkippedExecutio n" />
72 </NaClLink> 75 </NaClLink>
73 76
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 <Message Condition="'$(LibSkippedExecution)' == 'false'" Text="$(MSBuildProj ectFile) -&gt; $(TargetPath)" Importance="High" /> 112 <Message Condition="'$(LibSkippedExecution)' == 'false'" Text="$(MSBuildProj ectFile) -&gt; $(TargetPath)" Importance="High" />
110 113
111 </Target> 114 </Target>
112 115
113 <!-- Imports --> 116 <!-- Imports -->
114 <Import Project="$(VCTargetsPath)\NaCl\NaCl.CppBuild.targets" /> 117 <Import Project="$(VCTargetsPath)\NaCl\NaCl.CppBuild.targets" />
115 <Import Project="$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_newlib\Microso ft.Cpp.NaCl.win_x86_newlib.targets" Condition="'pnacl' == 'newlib' AND (exists(' $(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_newlib\Microsoft.Cpp.NaCl.win_x86 _newlib.targets'))" /> 118 <Import Project="$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_newlib\Microso ft.Cpp.NaCl.win_x86_newlib.targets" Condition="'pnacl' == 'newlib' AND (exists(' $(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_newlib\Microsoft.Cpp.NaCl.win_x86 _newlib.targets'))" />
116 <Import Project="$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_glibc\Microsof t.Cpp.NaCl.win_x86_glibc.targets" Condition="'$(ToolchainName)' == 'glibc' AND ( exists('$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_glibc\Microsoft.Cpp.NaCl. win_x86_glibc.targets'))" /> 119 <Import Project="$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_glibc\Microsof t.Cpp.NaCl.win_x86_glibc.targets" Condition="'$(ToolchainName)' == 'glibc' AND ( exists('$(VCTargetsPath)\NaCl\PlatformToolsets\win_x86_glibc\Microsoft.Cpp.NaCl. win_x86_glibc.targets'))" />
117 120
118 </Project> 121 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698