Changeset 146416 in webkit
- Timestamp:
- Mar 20, 2013, 5:08:39 PM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r146402 r146416 1 2013-03-20 Brent Fulgham <bfulgham@webkit.org> 2 3 [WinCairo] Unreviewed build fix for VS2010. 4 5 Had to add WinCairo-specific property sheets to deal with some 6 library and path differences with the main Apple port. 7 8 * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj: 9 * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebugWinCairo.props: 10 * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeReleaseWinCairo.props: 11 * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommonWinCairo.props: Added. 12 * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebugWinCairo.props: Added. 13 * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffReleaseWinCairo.props: Added. 14 1 15 2013-03-20 Benjamin Poulain <bpoulain@apple.com> 2 16 -
trunk/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj
r146398 r146416 97 97 <ClCompile Include="..\..\cairo\PixelDumpSupportCairo.cpp"> 98 98 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> 99 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>100 99 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild> 101 100 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> 102 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>103 101 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild> 104 102 </ClCompile> 105 <ClCompile Include="..\..\cg\PixelDumpSupportCG.cpp" /> 103 <ClCompile Include="..\..\cg\PixelDumpSupportCG.cpp"> 104 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild> 105 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild> 106 </ClCompile> 106 107 <ClCompile Include="..\..\CyclicRedundancyCheck.cpp" /> 107 108 <ClCompile Include="..\..\DumpRenderTreeCommon.cpp" /> … … 137 138 <ClInclude Include="..\..\cairo\PixelDumpSupportCairo.h"> 138 139 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> 139 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>140 140 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild> 141 141 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> 142 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>143 142 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild> 144 143 </ClInclude> 145 <ClInclude Include="..\..\cg\PixelDumpSupportCG.h" /> 144 <ClInclude Include="..\..\cg\PixelDumpSupportCG.h"> 145 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild> 146 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild> 147 </ClInclude> 146 148 <ClInclude Include="..\..\config.h" /> 147 149 <ClInclude Include="..\..\CyclicRedundancyCheck.h" /> -
trunk/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebugWinCairo.props
r146398 r146416 10 10 <Import Project="DumpRenderTreeCommon.props" /> 11 11 </ImportGroup> 12 <ItemDefinitionGroup> 13 <ClCompile> 14 <AdditionalIncludeDirectories>$(ProjectDir)\..\..\cairo;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 15 </ClCompile> 16 </ItemDefinitionGroup> 12 17 </Project> -
trunk/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeReleaseWinCairo.props
r146398 r146416 10 10 <Import Project="DumpRenderTreeCommon.props" /> 11 11 </ImportGroup> 12 <ItemDefinitionGroup> 13 <ClCompile> 14 <AdditionalIncludeDirectories>$(ProjectDir)\..\..\cairo;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 15 </ClCompile> 16 </ItemDefinitionGroup> 12 17 </Project>
Note:
See TracChangeset
for help on using the changeset viewer.