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

Unified 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: Add pnacl-translate phase Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/hello_world_gles.vcxproj
diff --git a/visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/hello_world_gles.vcxproj b/visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/hello_world_gles.vcxproj
index c0716d4ebb2ec1aef64d306096540ccd98e38773..80ef104109cf3c289d9f4b7a78f4785c79d40c9d 100644
--- a/visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/hello_world_gles.vcxproj
+++ b/visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/hello_world_gles.vcxproj
@@ -9,6 +9,10 @@
<Configuration>Debug</Configuration>
<Platform>NaCl64</Platform>
</ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|PNaCl">
+ <Configuration>Debug</Configuration>
+ <Platform>PNaCl</Platform>
+ </ProjectConfiguration>
<ProjectConfiguration Include="Debug|PPAPI">
<Configuration>Debug</Configuration>
<Platform>PPAPI</Platform>
@@ -21,6 +25,10 @@
<Configuration>Release</Configuration>
<Platform>NaCl64</Platform>
</ProjectConfiguration>
+ <ProjectConfiguration Include="Release|PNaCl">
+ <Configuration>Release</Configuration>
+ <Platform>PNaCl</Platform>
+ </ProjectConfiguration>
<ProjectConfiguration Include="Release|PPAPI">
<Configuration>Release</Configuration>
<Platform>PPAPI</Platform>
@@ -108,6 +116,11 @@ python.exe "$(VSNaClSDKRoot)\tools\create_nmf.py" -D "$(VSNaClSDKRoot)\toolchain
<AdditionalDependencies>ppapi.lib;ppapi_gles2.lib;</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PNaCl'">
binji 2012/10/29 18:08:59 what about release?
Sam Clegg 2012/10/29 22:42:51 Done.
+ <Link>
+ <AdditionalDependencies>ppapi_cpp;ppapi;ppapi_gles2</AdditionalDependencies>
+ </Link>
+ </ItemDefinitionGroup>
<ItemGroup>
<None Include="common.js" />
<None Include="fragment_shader_es2.frag" />
@@ -126,4 +139,4 @@ python.exe "$(VSNaClSDKRoot)\tools\create_nmf.py" -D "$(VSNaClSDKRoot)\toolchain
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
-</Project>
+</Project>

Powered by Google App Engine
This is Rietveld 408576698