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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_nacl/hello_nacl/hello_nacl.vcxproj

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 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso ft.com/developer/msbuild/2003"> 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso ft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations"> 3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug|NaCl32"> 4 <ProjectConfiguration Include="Debug|NaCl32">
5 <Configuration>Debug</Configuration> 5 <Configuration>Debug</Configuration>
6 <Platform>NaCl32</Platform> 6 <Platform>NaCl32</Platform>
7 </ProjectConfiguration> 7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Debug|NaCl64"> 8 <ProjectConfiguration Include="Debug|NaCl64">
9 <Configuration>Debug</Configuration> 9 <Configuration>Debug</Configuration>
10 <Platform>NaCl64</Platform> 10 <Platform>NaCl64</Platform>
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 <VSNaClSDKRoot>$(NACL_SDK_ROOT)\</VSNaClSDKRoot> 104 <VSNaClSDKRoot>$(NACL_SDK_ROOT)\</VSNaClSDKRoot>
105 <IncludePath>$(VSNaClSDKRoot)include;</IncludePath> 105 <IncludePath>$(VSNaClSDKRoot)include;</IncludePath>
106 <LibraryPath>$(VSNaClSDKRoot)lib;</LibraryPath> 106 <LibraryPath>$(VSNaClSDKRoot)lib;</LibraryPath>
107 </PropertyGroup> 107 </PropertyGroup>
108 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|NaCl32'"> 108 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|NaCl32'">
109 <NaClAddInVersion>1</NaClAddInVersion> 109 <NaClAddInVersion>1</NaClAddInVersion>
110 <VSNaClSDKRoot>$(NACL_SDK_ROOT)\</VSNaClSDKRoot> 110 <VSNaClSDKRoot>$(NACL_SDK_ROOT)\</VSNaClSDKRoot>
111 <IncludePath>$(VSNaClSDKRoot)include;</IncludePath> 111 <IncludePath>$(VSNaClSDKRoot)include;</IncludePath>
112 <LibraryPath>$(VSNaClSDKRoot)lib;</LibraryPath> 112 <LibraryPath>$(VSNaClSDKRoot)lib;</LibraryPath>
113 </PropertyGroup> 113 </PropertyGroup>
114 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PNaCl'">
115 <NaClAddInVersion>1</NaClAddInVersion>
116 </PropertyGroup>
117 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|PNaCl'">
118 <NaClAddInVersion>1</NaClAddInVersion>
119 </PropertyGroup>
114 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" > 120 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
115 <ClCompile> 121 <ClCompile>
116 <PrecompiledHeader> 122 <PrecompiledHeader>
117 </PrecompiledHeader> 123 </PrecompiledHeader>
118 <WarningLevel>Level3</WarningLevel> 124 <WarningLevel>Level3</WarningLevel>
119 <Optimization>Disabled</Optimization> 125 <Optimization>Disabled</Optimization>
120 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)< /PreprocessorDefinitions> 126 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)< /PreprocessorDefinitions>
121 </ClCompile> 127 </ClCompile>
122 <Link> 128 <Link>
123 <SubSystem>Windows</SubSystem> 129 <SubSystem>Windows</SubSystem>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|NaCl6 4'"> 170 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|NaCl6 4'">
165 <Link> 171 <Link>
166 <AdditionalDependencies>ppapi_cpp;ppapi;</AdditionalDependencies> 172 <AdditionalDependencies>ppapi_cpp;ppapi;</AdditionalDependencies>
167 </Link> 173 </Link>
168 </ItemDefinitionGroup> 174 </ItemDefinitionGroup>
169 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|NaCl3 2'"> 175 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|NaCl3 2'">
170 <Link> 176 <Link>
171 <AdditionalDependencies>ppapi_cpp;ppapi;</AdditionalDependencies> 177 <AdditionalDependencies>ppapi_cpp;ppapi;</AdditionalDependencies>
172 </Link> 178 </Link>
173 </ItemDefinitionGroup> 179 </ItemDefinitionGroup>
180 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PNaCl'" >
181 <Link>
182 <AdditionalDependencies>ppapi_cpp;ppapi;</AdditionalDependencies>
183 </Link>
184 </ItemDefinitionGroup>
185 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|PNaCl '">
186 <Link>
187 <AdditionalDependencies>ppapi_cpp;ppapi;</AdditionalDependencies>
188 </Link>
189 </ItemDefinitionGroup>
174 <ItemGroup> 190 <ItemGroup>
175 <None Include="index.html" /> 191 <None Include="index.html" />
176 </ItemGroup> 192 </ItemGroup>
177 <ItemGroup> 193 <ItemGroup>
178 <ClCompile Include="hello_nacl.c" /> 194 <ClCompile Include="hello_nacl.c" />
179 </ItemGroup> 195 </ItemGroup>
180 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 196 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
181 <ImportGroup Label="ExtensionTargets"> 197 <ImportGroup Label="ExtensionTargets">
182 </ImportGroup> 198 </ImportGroup>
183 </Project> 199 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698