Title: [129248] trunk/Source/WebCore
Revision
129248
Author
[email protected]
Date
2012-09-21 13:09:31 -0700 (Fri, 21 Sep 2012)

Log Message

Make RenderingAllInOne.cpp usable for ports other than Apple/Win
https://bugs.webkit.org/show_bug.cgi?id=96000

Patch by Simon Hausmann <[email protected]> on 2012-09-21
Reviewed by Ryosuke Niwa.

RenderingAllInOne.cpp unconditionally includes RenderThemeWin. This patch separates
it out from the file.

* Target.pri: Add RenderingAllInOne.cpp to the list of supported all-in-one files.
* WebCore.vcproj/WebCore.vcproj: Compile RenderThemeWin.cpp separately.
* rendering/RenderingAllInOne.cpp: Don't include RenderThemeWin.cpp here.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (129247 => 129248)


--- trunk/Source/WebCore/ChangeLog	2012-09-21 20:03:57 UTC (rev 129247)
+++ trunk/Source/WebCore/ChangeLog	2012-09-21 20:09:31 UTC (rev 129248)
@@ -1,3 +1,17 @@
+2012-09-21  Simon Hausmann  <[email protected]>
+
+        Make RenderingAllInOne.cpp usable for ports other than Apple/Win
+        https://bugs.webkit.org/show_bug.cgi?id=96000
+
+        Reviewed by Ryosuke Niwa.
+
+        RenderingAllInOne.cpp unconditionally includes RenderThemeWin. This patch separates
+        it out from the file.
+
+        * Target.pri: Add RenderingAllInOne.cpp to the list of supported all-in-one files.
+        * WebCore.vcproj/WebCore.vcproj: Compile RenderThemeWin.cpp separately.
+        * rendering/RenderingAllInOne.cpp: Don't include RenderThemeWin.cpp here.
+
 2012-09-21  Joanmarie Diggs  <[email protected]>
 
         REGRESSION (r127882): accessibility/spinbutton-value.html failing on GTK

Modified: trunk/Source/WebCore/Target.pri (129247 => 129248)


--- trunk/Source/WebCore/Target.pri	2012-09-21 20:03:57 UTC (rev 129247)
+++ trunk/Source/WebCore/Target.pri	2012-09-21 20:09:31 UTC (rev 129248)
@@ -4033,6 +4033,7 @@
 ALL_IN_ONE_SOURCES += \
     accessibility/AccessibilityAllInOne.cpp \
     inspector/InspectorAllInOne.cpp \
+    rendering/RenderingAllInOne.cpp \
     loader/appcache/ApplicationCacheAllInOne.cpp \
     platform/text/TextAllInOne.cpp \
     rendering/style/StyleAllInOne.cpp

Modified: trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj (129247 => 129248)


--- trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj	2012-09-21 20:03:57 UTC (rev 129247)
+++ trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj	2012-09-21 20:09:31 UTC (rev 129248)
@@ -44027,7 +44027,6 @@
 				>
 				<FileConfiguration
 					Name="Debug|Win32"
-					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
@@ -44035,7 +44034,6 @@
 				</FileConfiguration>
 				<FileConfiguration
 					Name="Release|Win32"
-					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
@@ -44043,7 +44041,6 @@
 				</FileConfiguration>
 				<FileConfiguration
 					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
@@ -44051,7 +44048,6 @@
 				</FileConfiguration>
 				<FileConfiguration
 					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
@@ -44059,7 +44055,6 @@
 				</FileConfiguration>
 				<FileConfiguration
 					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
@@ -44067,7 +44062,6 @@
 				</FileConfiguration>
 				<FileConfiguration
 					Name="Production|Win32"
-					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"

Modified: trunk/Source/WebCore/rendering/RenderingAllInOne.cpp (129247 => 129248)


--- trunk/Source/WebCore/rendering/RenderingAllInOne.cpp	2012-09-21 20:03:57 UTC (rev 129247)
+++ trunk/Source/WebCore/rendering/RenderingAllInOne.cpp	2012-09-21 20:09:31 UTC (rev 129248)
@@ -106,7 +106,6 @@
 #include "RenderTextControlSingleLine.cpp"
 #include "RenderTextFragment.cpp"
 #include "RenderTheme.cpp"
-#include "RenderThemeWin.cpp"
 #include "RenderTreeAsText.cpp"
 #include "RenderVideo.cpp"
 #include "RenderView.cpp"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to