blob: 7b2ed41a756fee9c502dbdac2d017dc43d200b9e [file] [log] [blame]
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemDefinitionGroup>
<ClCompile>
<!-- add NaCl preprocessor -->
<PreprocessorDefinitions>NACL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>ppapi_cpp;ppapi;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<!-- setup default debugging parameters -->
<PropertyGroup>
<LocalDebuggerCommand>$(CHROME_PATH)</LocalDebuggerCommand>
<LocalDebuggerCommandArguments Condition="$(Configuration) == 'Debug'">--enable-nacl-debug --no-sandbox localhost:$(NaClWebServerPort)/$(NaClIndexHTML) --user-data-dir="$(ProjectDir)/chrome_data" --enable-nacl</LocalDebuggerCommandArguments>
<LocalDebuggerCommandArguments Condition="$(Configuration) != 'Debug'">localhost:$(NaClWebServerPort)/$(NaClIndexHTML) --user-data-dir="$(ProjectDir)/chrome_data" --enable-nacl</LocalDebuggerCommandArguments>
</PropertyGroup>
</Project>