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

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: 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..b5b12f4ab2d91c4f1f05f62fc3167753ca9ebccd 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,12 @@ 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'">
+ <Link>
+ <ReportUndefinedSymbols>false</ReportUndefinedSymbols>
binji 2012/10/29 18:08:59 remove
+ <AdditionalDependencies>ppapi_cpp;ppapi;ppapi_gles2</AdditionalDependencies>
+ </Link>
+ </ItemDefinitionGroup>
<ItemGroup>
<None Include="common.js" />
<None Include="fragment_shader_es2.frag" />

Powered by Google App Engine
This is Rietveld 408576698