| 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 24 matching lines...) Expand all Loading... |
| 35 <AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;%(AdditionalDependencies)<
/AdditionalDependencies> | 35 <AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;%(AdditionalDependencies)<
/AdditionalDependencies> |
| 36 <OutputFile>$(TargetDir)$(TargetName)$(TargetExt)</OutputFile> | 36 <OutputFile>$(TargetDir)$(TargetName)$(TargetExt)</OutputFile> |
| 37 <SubSystem>Windows</SubSystem> | 37 <SubSystem>Windows</SubSystem> |
| 38 </Link> | 38 </Link> |
| 39 </ItemDefinitionGroup> | 39 </ItemDefinitionGroup> |
| 40 | 40 |
| 41 <!-- setup default debugging parameters --> | 41 <!-- setup default debugging parameters --> |
| 42 <PropertyGroup> | 42 <PropertyGroup> |
| 43 <TargetPath Condition="'$(TargetPath)' == ''">$([System.IO.Path]::Combine($(
ProjectDir),$(OutDir)$(TargetName)$(TargetExt)))</TargetPath> | 43 <TargetPath Condition="'$(TargetPath)' == ''">$([System.IO.Path]::Combine($(
ProjectDir),$(OutDir)$(TargetName)$(TargetExt)))</TargetPath> |
| 44 <LocalDebuggerCommand>$(CHROME_PATH)</LocalDebuggerCommand> | 44 <LocalDebuggerCommand>$(CHROME_PATH)</LocalDebuggerCommand> |
| 45 <LocalDebuggerCommandArguments Condition="$(Configuration) == 'Debug'">--reg
ister-pepper-plugins="$(TargetPath)";application/x-nacl localhost:$(NaClWebServe
rPort) --user-data-dir="$(ProjectDir)/chrome_data" --wait-for-debugger-children<
/LocalDebuggerCommandArguments> | 45 <LocalDebuggerCommandArguments Condition="$(Configuration) == 'Debug'">--reg
ister-pepper-plugins="$(TargetPath)";application/x-nacl localhost:$(NaClWebServe
rPort)/$(NaCLIndexHTML) --user-data-dir="$(ProjectDir)/chrome_data" --wait-for-d
ebugger-children</LocalDebuggerCommandArguments> |
| 46 <LocalDebuggerCommandArguments Condition="$(Configuration) != 'Debug'">--reg
ister-pepper-plugins="$(TargetPath)";application/x-nacl localhost:$(NaClWebServe
rPort) --user-data-dir="$(ProjectDir)/chrome_data"</LocalDebuggerCommandArgument
s> | 46 <LocalDebuggerCommandArguments Condition="$(Configuration) != 'Debug'">--reg
ister-pepper-plugins="$(TargetPath)";application/x-nacl localhost:$(NaClWebServe
rPort)/$(NaCLIndexHTML) --user-data-dir="$(ProjectDir)/chrome_data"</LocalDebugg
erCommandArguments> |
| 47 <LinkIncremental Condition="$(Configuration) == 'Debug'">true</LinkIncrement
al> | 47 <LinkIncremental Condition="$(Configuration) == 'Debug'">true</LinkIncrement
al> |
| 48 <LinkIncremental Condition="$(Configuration) != 'Debug'">false</LinkIncremen
tal> | 48 <LinkIncremental Condition="$(Configuration) != 'Debug'">false</LinkIncremen
tal> |
| 49 </PropertyGroup> | 49 </PropertyGroup> |
| 50 </Project> | 50 </Project> |
| OLD | NEW |