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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/PPAPI_Patch/ImportAfter/PPAPI.override.props

Issue 10797040: PPAPI Patching System and Unit Tests (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | visual_studio/NativeClientVSAddIn/InstallerResources/PPAPI_Patch/Microsoft.Cpp.[platform].default.props.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemDefinitionGroup>
3 <ClCompile>
4 <!-- add PPAPI preprocessor -->
5 <PreprocessorDefinitions>PPAPI;%(PreprocessorDefinitions)</PreprocessorDef initions>
6 </ClCompile>
7 </ItemDefinitionGroup>
8
9 <!-- Set the run-time library to the non-DLL versions to match Chrome. -->
10 <ItemDefinitionGroup>
11 <ClCompile>
12 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
13 </ClCompile>
14 </ItemDefinitionGroup>
15 <ItemDefinitionGroup Condition="'$(Configuration)' == 'Debug'">
16 <ClCompile>
17 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
18 </ClCompile>
19 </ItemDefinitionGroup>
20
21 <!-- Add the Pepper static libraries -->
22 <ItemDefinitionGroup>
23 <Link>
24 <AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;%(AdditionalDependencies)< /AdditionalDependencies>
25 </Link>
26 </ItemDefinitionGroup>
27
28 <!-- setup default debugging parameters -->
29 <PropertyGroup>
30 <LocalDebuggerCommand>$(CHROME_PATH)\chrome.exe</LocalDebuggerCommand>
31 <LocalDebuggerCommandArguments>--register-pepper-plugins="$(TargetPath)";app lication/x-nacl localhost:5103</LocalDebuggerCommandArguments>
32 </PropertyGroup>
33 </Project>
OLDNEW
« no previous file with comments | « no previous file | visual_studio/NativeClientVSAddIn/InstallerResources/PPAPI_Patch/Microsoft.Cpp.[platform].default.props.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698