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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/hello_world_gles.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 22 matching lines...) Expand all
33 <Configuration>Release</Configuration> 33 <Configuration>Release</Configuration>
34 <Platform>PPAPI</Platform> 34 <Platform>PPAPI</Platform>
35 </ProjectConfiguration> 35 </ProjectConfiguration>
36 </ItemGroup> 36 </ItemGroup>
37 <PropertyGroup Label="Globals"> 37 <PropertyGroup Label="Globals">
38 <ProjectGuid>{F82336A6-3A85-45E2-9A96-26DEA54280C5}</ProjectGuid> 38 <ProjectGuid>{F82336A6-3A85-45E2-9A96-26DEA54280C5}</ProjectGuid>
39 <Keyword>Win32Proj</Keyword> 39 <Keyword>Win32Proj</Keyword>
40 <RootNamespace>hello_world_gles</RootNamespace> 40 <RootNamespace>hello_world_gles</RootNamespace>
41 </PropertyGroup> 41 </PropertyGroup>
42 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 42 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
43 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Release|NaCl32'">
44 <NaClIndexHTML>index_newlib.html</NaClIndexHTML>
binji 2012/11/15 00:34:28 it looks like the .user file was using the toolcha
Sam Clegg 2012/11/15 00:56:27 Unfortunately I can't use the toolchain name in th
45 </PropertyGroup>
46 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Debug|NaCl32'">
47 <NaClIndexHTML>index_newlib.html</NaClIndexHTML>
48 </PropertyGroup>
49 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Release|NaCl64'">
50 <NaClIndexHTML>index_newlib.html</NaClIndexHTML>
51 </PropertyGroup>
52 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Debug|NaCl64'">
53 <NaClIndexHTML>index_newlib.html</NaClIndexHTML>
54 </PropertyGroup>
55 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Release|PNaCl'">
56 <NaClIndexHTML>index_pnacl.html</NaClIndexHTML>
57 </PropertyGroup>
58 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Debug|PNaCl'">
59 <NaClIndexHTML>index_pnacl.html</NaClIndexHTML>
60 </PropertyGroup>
61 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Debug|PPAPI'">
62 <NaClIndexHTML>index_win.html</NaClIndexHTML>
63 </PropertyGroup>
64 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Release|PPAPI'">
65 <NaClIndexHTML>index_win.html</NaClIndexHTML>
66 </PropertyGroup>
43 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 67 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
44 <ImportGroup Label="ExtensionSettings"> 68 <ImportGroup Label="ExtensionSettings">
45 </ImportGroup> 69 </ImportGroup>
46 <PropertyGroup Label="UserMacros" /> 70 <PropertyGroup Label="UserMacros" />
47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|NaCl64'"> 71 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|NaCl64'">
48 <NaClAddInVersion>1</NaClAddInVersion> 72 <NaClAddInVersion>1</NaClAddInVersion>
49 </PropertyGroup> 73 </PropertyGroup>
50 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'"> 74 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">
51 <NaClAddInVersion>1</NaClAddInVersion> 75 <NaClAddInVersion>1</NaClAddInVersion>
52 </PropertyGroup> 76 </PropertyGroup>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 <ClCompile Include="hello_world.cc" /> 145 <ClCompile Include="hello_world.cc" />
122 <ClCompile Include="matrix.cc" /> 146 <ClCompile Include="matrix.cc" />
123 </ItemGroup> 147 </ItemGroup>
124 <ItemGroup> 148 <ItemGroup>
125 <ClInclude Include="matrix.h" /> 149 <ClInclude Include="matrix.h" />
126 </ItemGroup> 150 </ItemGroup>
127 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 151 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
128 <ImportGroup Label="ExtensionTargets"> 152 <ImportGroup Label="ExtensionTargets">
129 </ImportGroup> 153 </ImportGroup>
130 </Project> 154 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698