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

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

Issue 573823002: [VS Addin] Fix several issues with debugging PPAPI plugins (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 6 years, 3 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/ImportAfter/PPAPI.override.props » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemDefinitionGroup> 2 <ItemDefinitionGroup>
3 <ClCompile> 3 <ClCompile>
4 <!-- add NaCl preprocessor --> 4 <!-- add NaCl preprocessor -->
5 <PreprocessorDefinitions>NACL;%(PreprocessorDefinitions)</PreprocessorDefi nitions> 5 <PreprocessorDefinitions>NACL;%(PreprocessorDefinitions)</PreprocessorDefi nitions>
6 </ClCompile> 6 </ClCompile>
7 <Link> 7 <Link>
8 <AdditionalDependencies>ppapi_cpp;ppapi;%(AdditionalDependencies)</Additio nalDependencies> 8 <AdditionalDependencies>ppapi_cpp;ppapi;%(AdditionalDependencies)</Additio nalDependencies>
9 </Link> 9 </Link>
10 </ItemDefinitionGroup> 10 </ItemDefinitionGroup>
11 11
12 <!-- setup default debugging parameters --> 12 <!-- setup default debugging parameters -->
13 <PropertyGroup> 13 <PropertyGroup>
14 <LocalDebuggerCommand>$(CHROME_PATH)</LocalDebuggerCommand> 14 <LocalDebuggerCommand>$(CHROME_PATH)</LocalDebuggerCommand>
15 <LocalDebuggerCommandArguments Condition="$(Configuration) == 'Debug'">--ena ble-nacl-debug --no-sandbox localhost:$(NaClWebServerPort)/$(NaClIndexHTML) --us er-data-dir="$(ProjectDir)/chrome_data" --enable-nacl</LocalDebuggerCommandArgum ents> 15 <LocalDebuggerCommandArguments Condition="$(Configuration) == 'Debug'">--ena ble-nacl-debug --no-sandbox http://localhost:$(NaClWebServerPort)/$(NaClIndexHTM L) --user-data-dir="$(ProjectDir)/chrome_data" --enable-nacl --no-first-run</Loc alDebuggerCommandArguments>
16 <LocalDebuggerCommandArguments Condition="$(Configuration) != 'Debug'">local host:$(NaClWebServerPort)/$(NaClIndexHTML) --user-data-dir="$(ProjectDir)/chrome _data" --enable-nacl</LocalDebuggerCommandArguments> 16 <LocalDebuggerCommandArguments Condition="$(Configuration) != 'Debug'">http: //localhost:$(NaClWebServerPort)/$(NaClIndexHTML) --user-data-dir="$(ProjectDir) /chrome_data" --enable-nacl --no-first-run</LocalDebuggerCommandArguments>
17 </PropertyGroup> 17 </PropertyGroup>
18 </Project> 18 </Project>
OLDNEW
« no previous file with comments | « no previous file | visual_studio/NativeClientVSAddIn/InstallerResources/PPAPI_Patch/ImportAfter/PPAPI.override.props » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698