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

Side by Side Diff: AdblockPlusEngine.vcxproj

Issue 10836037: Share code for data path retrieval in engine and plugin (Closed)
Patch Set: Fixed nit Created June 4, 2013, 10:38 a.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') | no next file with comments »
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="Release Production|Win32"> 8 <ProjectConfiguration Include="Release Production|Win32">
9 <Configuration>Release Production</Configuration> 9 <Configuration>Release Production</Configuration>
10 <Platform>Win32</Platform> 10 <Platform>Win32</Platform>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 <EnableCOMDATFolding>true</EnableCOMDATFolding> 85 <EnableCOMDATFolding>true</EnableCOMDATFolding>
86 <OptimizeReferences>true</OptimizeReferences> 86 <OptimizeReferences>true</OptimizeReferences>
87 <AdditionalDependencies>libadblockplus.lib;shlwapi.lib;user32.lib;v8_base. lib;v8_snapshot.lib;winhttp.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</ AdditionalDependencies> 87 <AdditionalDependencies>libadblockplus.lib;shlwapi.lib;user32.lib;v8_base. lib;v8_snapshot.lib;winhttp.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</ AdditionalDependencies>
88 <OutputFile>$(ProjectDir)build\ia32\$(Configuration)\AdblockPlusEngine.exe </OutputFile> 88 <OutputFile>$(ProjectDir)build\ia32\$(Configuration)\AdblockPlusEngine.exe </OutputFile>
89 <DelayLoadDLLs>Shell32.dll</DelayLoadDLLs> 89 <DelayLoadDLLs>Shell32.dll</DelayLoadDLLs>
90 </Link> 90 </Link>
91 </ItemDefinitionGroup> 91 </ItemDefinitionGroup>
92 <ItemGroup> 92 <ItemGroup>
93 <ClCompile Include="src\engine\main.cpp" /> 93 <ClCompile Include="src\engine\main.cpp" />
94 <ClCompile Include="src\engine\Debug.cpp" /> 94 <ClCompile Include="src\engine\Debug.cpp" />
95 <ClCompile Include="src\engine\Utils.cpp" />
96 <ClCompile Include="src\shared\Communication.cpp"> 95 <ClCompile Include="src\shared\Communication.cpp">
97 <PrecompiledHeader>NotUsing</PrecompiledHeader> 96 <PrecompiledHeader>NotUsing</PrecompiledHeader>
98 </ClCompile> 97 </ClCompile>
99 <ClCompile Include="src\shared\AutoHandle.cpp"> 98 <ClCompile Include="src\shared\AutoHandle.cpp">
100 <PrecompiledHeader>NotUsing</PrecompiledHeader> 99 <PrecompiledHeader>NotUsing</PrecompiledHeader>
101 </ClCompile> 100 </ClCompile>
101 <ClCompile Include="src\shared\Utils.cpp">
102 <PrecompiledHeader>NotUsing</PrecompiledHeader>
103 </ClCompile>
102 </ItemGroup> 104 </ItemGroup>
103 <ItemGroup> 105 <ItemGroup>
104 <ClInclude Include="src\engine\stdafx.h" /> 106 <ClInclude Include="src\engine\stdafx.h" />
105 <ClInclude Include="src\shared\Communication.h" /> 107 <ClInclude Include="src\shared\Communication.h" />
106 <ClInclude Include="src\shared\AutoHandle.h" /> 108 <ClInclude Include="src\shared\AutoHandle.h" />
107 </ItemGroup> 109 </ItemGroup>
108 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 110 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
109 <ImportGroup Label="ExtensionTargets"> 111 <ImportGroup Label="ExtensionTargets">
110 </ImportGroup> 112 </ImportGroup>
111 </Project> 113 </Project>
OLDNEW
« no previous file with comments | « no previous file | AdblockPlusPlugin.vcxproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld