Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: AdblockPlusEngine.vcxproj

Issue 10897028: Create a shared dictionary class for plugin and engine (Closed)
Patch Set: Created June 7, 2013, 12:42 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | AdblockPlusPlugin.vcxproj » ('j') | WixInstaller/adblockplusie.wxs » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso ft.com/developer/msbuild/2003"> 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso ft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations"> 3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug Production|Win32"> 4 <ProjectConfiguration Include="Debug Production|Win32">
5 <Configuration>Debug Production</Configuration> 5 <Configuration>Debug Production</Configuration>
6 <Platform>Win32</Platform> 6 <Platform>Win32</Platform>
7 </ProjectConfiguration> 7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Debug Production|x64"> 8 <ProjectConfiguration Include="Debug Production|x64">
9 <Configuration>Debug Production</Configuration> 9 <Configuration>Debug Production</Configuration>
10 <Platform>x64</Platform> 10 <Platform>x64</Platform>
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 <OptimizeReferences>true</OptimizeReferences> 307 <OptimizeReferences>true</OptimizeReferences>
308 <AdditionalDependencies>libadblockplus.lib;shlwapi.lib;user32.lib;v8_base. lib;v8_snapshot.lib;winhttp.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</ AdditionalDependencies> 308 <AdditionalDependencies>libadblockplus.lib;shlwapi.lib;user32.lib;v8_base. lib;v8_snapshot.lib;winhttp.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</ AdditionalDependencies>
309 <OutputFile>$(ProjectDir)build\x64\$(Configuration)\AdblockPlusEngine.exe< /OutputFile> 309 <OutputFile>$(ProjectDir)build\x64\$(Configuration)\AdblockPlusEngine.exe< /OutputFile>
310 <DelayLoadDLLs>Shell32.dll</DelayLoadDLLs> 310 <DelayLoadDLLs>Shell32.dll</DelayLoadDLLs>
311 </Link> 311 </Link>
312 </ItemDefinitionGroup> 312 </ItemDefinitionGroup>
313 <ItemGroup> 313 <ItemGroup>
314 <ClCompile Include="src\engine\main.cpp" /> 314 <ClCompile Include="src\engine\main.cpp" />
315 <ClCompile Include="src\engine\Debug.cpp" /> 315 <ClCompile Include="src\engine\Debug.cpp" />
316 <ClCompile Include="src\engine\Updater.cpp" /> 316 <ClCompile Include="src\engine\Updater.cpp" />
317 <ClCompile Include="src\shared\Communication.cpp"> 317 <ClCompile Include="src\shared\Communication.cpp" />
318 <PrecompiledHeader>NotUsing</PrecompiledHeader> 318 <ClCompile Include="src\shared\AutoHandle.cpp" />
319 </ClCompile> 319 <ClCompile Include="src\shared\Dictionary.cpp" />
320 <ClCompile Include="src\shared\AutoHandle.cpp"> 320 <ClCompile Include="src\shared\Utils.cpp" />
321 <PrecompiledHeader>NotUsing</PrecompiledHeader>
322 </ClCompile>
323 <ClCompile Include="src\shared\Utils.cpp">
324 <PrecompiledHeader>NotUsing</PrecompiledHeader>
325 </ClCompile>
326 </ItemGroup> 321 </ItemGroup>
327 <ItemGroup> 322 <ItemGroup>
328 <ClInclude Include="src\engine\Debug.h" /> 323 <ClInclude Include="src\engine\Debug.h" />
329 <ClInclude Include="src\engine\Resource.h" /> 324 <ClInclude Include="src\engine\Resource.h" />
330 <ClInclude Include="src\engine\Updater.h" /> 325 <ClInclude Include="src\engine\Updater.h" />
331 <ClInclude Include="src\shared\AutoHandle.h" /> 326 <ClInclude Include="src\shared\AutoHandle.h" />
332 <ClInclude Include="src\shared\Communication.h" /> 327 <ClInclude Include="src\shared\Communication.h" />
328 <ClInclude Include="src\shared\Dictionary.h" />
333 <ClInclude Include="src\shared\Utils.h" /> 329 <ClInclude Include="src\shared\Utils.h" />
334 <ClInclude Include="src\shared\Version.h" /> 330 <ClInclude Include="src\shared\Version.h" />
335 </ItemGroup> 331 </ItemGroup>
336 <ItemGroup> 332 <ItemGroup>
337 <ResourceCompile Include="src\engine\engine.rc" /> 333 <ResourceCompile Include="src\engine\engine.rc" />
338 </ItemGroup> 334 </ItemGroup>
339 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 335 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
340 <ImportGroup Label="ExtensionTargets"> 336 <ImportGroup Label="ExtensionTargets">
341 </ImportGroup> 337 </ImportGroup>
342 </Project> 338 </Project>
OLDNEW
« no previous file with comments | « no previous file | AdblockPlusPlugin.vcxproj » ('j') | WixInstaller/adblockplusie.wxs » ('J')

Powered by Google App Engine
This is Rietveld