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

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

Issue 11266051: Add PNaCl support for VS addin. (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>
11 </ProjectConfiguration> 11 </ProjectConfiguration>
12 <ProjectConfiguration Include="Debug|PNaCl">
13 <Configuration>Debug</Configuration>
14 <Platform>PNaCl</Platform>
15 </ProjectConfiguration>
12 <ProjectConfiguration Include="Debug|PPAPI"> 16 <ProjectConfiguration Include="Debug|PPAPI">
13 <Configuration>Debug</Configuration> 17 <Configuration>Debug</Configuration>
14 <Platform>PPAPI</Platform> 18 <Platform>PPAPI</Platform>
15 </ProjectConfiguration> 19 </ProjectConfiguration>
16 <ProjectConfiguration Include="Release|NaCl32"> 20 <ProjectConfiguration Include="Release|NaCl32">
17 <Configuration>Release</Configuration> 21 <Configuration>Release</Configuration>
18 <Platform>NaCl32</Platform> 22 <Platform>NaCl32</Platform>
19 </ProjectConfiguration> 23 </ProjectConfiguration>
20 <ProjectConfiguration Include="Release|NaCl64"> 24 <ProjectConfiguration Include="Release|NaCl64">
21 <Configuration>Release</Configuration> 25 <Configuration>Release</Configuration>
22 <Platform>NaCl64</Platform> 26 <Platform>NaCl64</Platform>
23 </ProjectConfiguration> 27 </ProjectConfiguration>
28 <ProjectConfiguration Include="Release|PNaCl">
29 <Configuration>Release</Configuration>
30 <Platform>PNaCl</Platform>
31 </ProjectConfiguration>
24 <ProjectConfiguration Include="Release|PPAPI"> 32 <ProjectConfiguration Include="Release|PPAPI">
25 <Configuration>Release</Configuration> 33 <Configuration>Release</Configuration>
26 <Platform>PPAPI</Platform> 34 <Platform>PPAPI</Platform>
27 </ProjectConfiguration> 35 </ProjectConfiguration>
28 </ItemGroup> 36 </ItemGroup>
29 <PropertyGroup Label="Globals"> 37 <PropertyGroup Label="Globals">
30 <ProjectGuid>{F82336A6-3A85-45E2-9A96-26DEA54280C5}</ProjectGuid> 38 <ProjectGuid>{F82336A6-3A85-45E2-9A96-26DEA54280C5}</ProjectGuid>
31 <Keyword>Win32Proj</Keyword> 39 <Keyword>Win32Proj</Keyword>
32 <RootNamespace>hello_world_gles</RootNamespace> 40 <RootNamespace>hello_world_gles</RootNamespace>
33 </PropertyGroup> 41 </PropertyGroup>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'" > 109 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'" >
102 <Link> 110 <Link>
103 <AdditionalDependencies>ppapi.lib;ppapi_gles2.lib;</AdditionalDependencies > 111 <AdditionalDependencies>ppapi.lib;ppapi_gles2.lib;</AdditionalDependencies >
104 </Link> 112 </Link>
105 </ItemDefinitionGroup> 113 </ItemDefinitionGroup>
106 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI '"> 114 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI '">
107 <Link> 115 <Link>
108 <AdditionalDependencies>ppapi.lib;ppapi_gles2.lib;</AdditionalDependencies > 116 <AdditionalDependencies>ppapi.lib;ppapi_gles2.lib;</AdditionalDependencies >
109 </Link> 117 </Link>
110 </ItemDefinitionGroup> 118 </ItemDefinitionGroup>
119 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PNaCl'" >
120 <Link>
121 <ReportUndefinedSymbols>false</ReportUndefinedSymbols>
binji 2012/10/29 18:08:59 remove
122 <AdditionalDependencies>ppapi_cpp;ppapi;ppapi_gles2</AdditionalDependencie s>
123 </Link>
124 </ItemDefinitionGroup>
111 <ItemGroup> 125 <ItemGroup>
112 <None Include="common.js" /> 126 <None Include="common.js" />
113 <None Include="fragment_shader_es2.frag" /> 127 <None Include="fragment_shader_es2.frag" />
114 <None Include="index_glibc.html" /> 128 <None Include="index_glibc.html" />
115 <None Include="index_newlib.html" /> 129 <None Include="index_newlib.html" />
116 <None Include="index_win.html" /> 130 <None Include="index_win.html" />
117 <None Include="vertex_shader_es2.vert" /> 131 <None Include="vertex_shader_es2.vert" />
118 </ItemGroup> 132 </ItemGroup>
119 <ItemGroup> 133 <ItemGroup>
120 <ClCompile Include="hello_world.cc" /> 134 <ClCompile Include="hello_world.cc" />
121 <ClCompile Include="matrix.cc" /> 135 <ClCompile Include="matrix.cc" />
122 </ItemGroup> 136 </ItemGroup>
123 <ItemGroup> 137 <ItemGroup>
124 <ClInclude Include="matrix.h" /> 138 <ClInclude Include="matrix.h" />
125 </ItemGroup> 139 </ItemGroup>
126 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 140 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
127 <ImportGroup Label="ExtensionTargets"> 141 <ImportGroup Label="ExtensionTargets">
128 </ImportGroup> 142 </ImportGroup>
129 </Project> 143 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698