| OLD | NEW |
| 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 PPAPI preprocessor --> | 4 <!-- add PPAPI preprocessor --> |
| 5 <PreprocessorDefinitions>PPAPI;%(PreprocessorDefinitions)</PreprocessorDef
initions> | 5 <PreprocessorDefinitions>PPAPI;%(PreprocessorDefinitions)</PreprocessorDef
initions> |
| 6 </ClCompile> | 6 </ClCompile> |
| 7 </ItemDefinitionGroup> | 7 </ItemDefinitionGroup> |
| 8 | 8 |
| 9 <!-- Set the run-time library to the non-DLL versions to match Chrome. --> | 9 <!-- Set the run-time library to the non-DLL versions to match Chrome. --> |
| 10 <ItemDefinitionGroup> | 10 <ItemDefinitionGroup> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 <!-- setup default debugging parameters --> | 41 <!-- setup default debugging parameters --> |
| 42 <PropertyGroup> | 42 <PropertyGroup> |
| 43 <LocalDebuggerCommand>$(CHROME_PATH)</LocalDebuggerCommand> | 43 <LocalDebuggerCommand>$(CHROME_PATH)</LocalDebuggerCommand> |
| 44 <LocalDebuggerCommandArguments Condition="$(Configuration) == 'Debug'">--reg
ister-pepper-plugins="$(TargetPath)";application/x-nacl localhost:$(NaClWebServe
rPort) --user-data-dir="$(ProjectDir)/chrome_data" --enable-nacl --wait-for-debu
gger-children --no-sandbox</LocalDebuggerCommandArguments> | 44 <LocalDebuggerCommandArguments Condition="$(Configuration) == 'Debug'">--reg
ister-pepper-plugins="$(TargetPath)";application/x-nacl localhost:$(NaClWebServe
rPort) --user-data-dir="$(ProjectDir)/chrome_data" --enable-nacl --wait-for-debu
gger-children --no-sandbox</LocalDebuggerCommandArguments> |
| 45 <LocalDebuggerCommandArguments Condition="$(Configuration) != 'Debug'">--reg
ister-pepper-plugins="$(TargetPath)";application/x-nacl localhost:$(NaClWebServe
rPort) --user-data-dir="$(ProjectDir)/chrome_data" --enable-nacl</LocalDebuggerC
ommandArguments> | 45 <LocalDebuggerCommandArguments Condition="$(Configuration) != 'Debug'">--reg
ister-pepper-plugins="$(TargetPath)";application/x-nacl localhost:$(NaClWebServe
rPort) --user-data-dir="$(ProjectDir)/chrome_data" --enable-nacl</LocalDebuggerC
ommandArguments> |
| 46 <LinkIncremental Condition="$(Configuration) == 'Debug'">true</LinkIncrement
al> | 46 <LinkIncremental Condition="$(Configuration) == 'Debug'">true</LinkIncrement
al> |
| 47 <LinkIncremental Condition="$(Configuration) != 'Debug'">false</LinkIncremen
tal> | 47 <LinkIncremental Condition="$(Configuration) != 'Debug'">false</LinkIncremen
tal> |
| 48 </PropertyGroup> | 48 </PropertyGroup> |
| 49 </Project> | 49 </Project> |
| OLD | NEW |