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

Side by Side Diff: MSVS/tests.vcxproj

Issue 10260028: Refactor tests, use fixtures and avoid duplication (Closed)
Patch Set: Created April 19, 2013, 4:11 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 | « MSVS/libadblockplus.vcxproj ('k') | MSVS/tests.vcxproj.filters » ('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|Win32"> 4 <ProjectConfiguration Include="Debug|Win32">
5 <Configuration>Debug</Configuration> 5 <Configuration>Debug</Configuration>
6 <Platform>Win32</Platform> 6 <Platform>Win32</Platform>
7 </ProjectConfiguration> 7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Debug|x64"> 8 <ProjectConfiguration Include="Debug|x64">
9 <Configuration>Debug</Configuration> 9 <Configuration>Debug</Configuration>
10 <Platform>x64</Platform> 10 <Platform>x64</Platform>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 60 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
61 <PostBuildEventUseInBuild>false</PostBuildEventUseInBuild> 61 <PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
62 </PropertyGroup> 62 </PropertyGroup>
63 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 63 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
64 <PostBuildEventUseInBuild>false</PostBuildEventUseInBuild> 64 <PostBuildEventUseInBuild>false</PostBuildEventUseInBuild>
65 </PropertyGroup> 65 </PropertyGroup>
66 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" > 66 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
67 <ClCompile> 67 <ClCompile>
68 <AdditionalIncludeDirectories>..\third_party\googletest;..\third_party\goo gletest\include;..\include;..\third_party\v8\include;%(AdditionalIncludeDirector ies)</AdditionalIncludeDirectories> 68 <AdditionalIncludeDirectories>..\third_party\googletest;..\third_party\goo gletest\include;..\include;..\third_party\v8\include;%(AdditionalIncludeDirector ies)</AdditionalIncludeDirectories>
69 <Optimization>Disabled</Optimization> 69 <Optimization>Disabled</Optimization>
70 <PreprocessorDefinitions>ENABLE_LATIN_1;ENABLE_DEBUGGER_SUPPORT;V8_TARGET_ ARCH_IA32;WIN32;DEBUG;ENABLE_DISASSEMBLER;V8_ENABLE_CHECKS;OBJECT_PRINT;VERIFY_H EAP;ENABLE_EXTRA_CHECKS;_VARIADIC_MAX=10;FILTER_ENGINE_STUBS=0;_WIN32;_DEBUG;HAV E_WININET;%(PreprocessorDefinitions)</PreprocessorDefinitions> 70 <PreprocessorDefinitions>ENABLE_LATIN_1;ENABLE_DEBUGGER_SUPPORT;V8_TARGET_ ARCH_IA32;WIN32;DEBUG;ENABLE_DISASSEMBLER;V8_ENABLE_CHECKS;OBJECT_PRINT;VERIFY_H EAP;ENABLE_EXTRA_CHECKS;_VARIADIC_MAX=10;_WIN32;_DEBUG;HAVE_WININET;%(Preprocess orDefinitions)</PreprocessorDefinitions>
71 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> 71 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
72 <CompileAsWinRT> 72 <CompileAsWinRT>
73 </CompileAsWinRT> 73 </CompileAsWinRT>
74 <MultiProcessorCompilation>true</MultiProcessorCompilation> 74 <MultiProcessorCompilation>true</MultiProcessorCompilation>
75 </ClCompile> 75 </ClCompile>
76 <Link> 76 <Link>
77 <AdditionalDependencies>winmm.lib;ws2_32.lib;Winhttp.lib;Shlwapi.lib</Addi tionalDependencies> 77 <AdditionalDependencies>winmm.lib;ws2_32.lib;Winhttp.lib;Shlwapi.lib</Addi tionalDependencies>
78 <OutputFile>$(OutDir)$(ProjectName)$(TargetExt)</OutputFile> 78 <OutputFile>$(OutDir)$(ProjectName)$(TargetExt)</OutputFile>
79 <IgnoreSpecificDefaultLibraries> 79 <IgnoreSpecificDefaultLibraries>
80 </IgnoreSpecificDefaultLibraries> 80 </IgnoreSpecificDefaultLibraries>
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 </ProjectReference> 207 </ProjectReference>
208 <ProjectReference Include="third_party\v8\tools\gyp\v8_snapshot.vcxproj"> 208 <ProjectReference Include="third_party\v8\tools\gyp\v8_snapshot.vcxproj">
209 <Project>{675D727D-F234-E4DD-20C1-85AAA5DF715B}</Project> 209 <Project>{675D727D-F234-E4DD-20C1-85AAA5DF715B}</Project>
210 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 210 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
211 </ProjectReference> 211 </ProjectReference>
212 <ProjectReference Include="third_party\v8\tools\gyp\js2c.vcxproj"> 212 <ProjectReference Include="third_party\v8\tools\gyp\js2c.vcxproj">
213 <Project>{49135473-EB63-9B96-1382-20C889488A21}</Project> 213 <Project>{49135473-EB63-9B96-1382-20C889488A21}</Project>
214 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 214 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
215 </ProjectReference> 215 </ProjectReference>
216 </ItemGroup> 216 </ItemGroup>
217 <ItemGroup>
218 <Text Include="..\test\BaseJsTest.h" />
219 </ItemGroup>
217 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 220 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
218 <ImportGroup Label="ExtensionTargets" /> 221 <ImportGroup Label="ExtensionTargets" />
219 </Project> 222 </Project>
OLDNEW
« no previous file with comments | « MSVS/libadblockplus.vcxproj ('k') | MSVS/tests.vcxproj.filters » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld