Title: [108067] trunk/Source/WebCore
Revision
108067
Author
[email protected]
Date
2012-02-17 06:19:21 -0800 (Fri, 17 Feb 2012)

Log Message

[CMake, EFL] Unreviewed, fix the build when building with
SHARED_CORE=ON after r107820.

RunLoopEfl.cpp has not been upstreamed yet, and building only
RunLoop.cpp created an .so with some missing, unimplemented
symbols. The BlackBerry port seems to be in the same situation.

The best solution for now is to build RunLoop.cpp only on the
WinCE port.

* CMakeLists.txt: Remove RunLoop.cpp from the list of files to build.
* PlatformWinCE.cmake: Add RunLoop.cpp to the list of files to build.

Modified Paths

Diff

Modified: trunk/Source/WebCore/CMakeLists.txt (108066 => 108067)


--- trunk/Source/WebCore/CMakeLists.txt	2012-02-17 13:40:15 UTC (rev 108066)
+++ trunk/Source/WebCore/CMakeLists.txt	2012-02-17 14:19:21 UTC (rev 108067)
@@ -1076,7 +1076,6 @@
     platform/MIMETypeRegistry.cpp
     platform/MemoryPressureHandler.cpp
     platform/PlatformEvent.cpp
-    platform/RunLoop.cpp
     platform/RuntimeApplicationChecks.cpp
     platform/ScrollAnimator.cpp
     platform/ScrollableArea.cpp

Modified: trunk/Source/WebCore/ChangeLog (108066 => 108067)


--- trunk/Source/WebCore/ChangeLog	2012-02-17 13:40:15 UTC (rev 108066)
+++ trunk/Source/WebCore/ChangeLog	2012-02-17 14:19:21 UTC (rev 108067)
@@ -1,3 +1,18 @@
+2012-02-17  Raphael Kubo da Costa  <[email protected]>
+
+        [CMake, EFL] Unreviewed, fix the build when building with
+        SHARED_CORE=ON after r107820.
+
+        RunLoopEfl.cpp has not been upstreamed yet, and building only
+        RunLoop.cpp created an .so with some missing, unimplemented
+        symbols. The BlackBerry port seems to be in the same situation.
+
+        The best solution for now is to build RunLoop.cpp only on the
+        WinCE port.
+
+        * CMakeLists.txt: Remove RunLoop.cpp from the list of files to build.
+        * PlatformWinCE.cmake: Add RunLoop.cpp to the list of files to build.
+
 2012-02-17  Pavel Feldman  <[email protected]>
 
         Web Inspector: a bit of color picker polish

Modified: trunk/Source/WebCore/PlatformWinCE.cmake (108066 => 108067)


--- trunk/Source/WebCore/PlatformWinCE.cmake	2012-02-17 13:40:15 UTC (rev 108066)
+++ trunk/Source/WebCore/PlatformWinCE.cmake	2012-02-17 14:19:21 UTC (rev 108067)
@@ -32,6 +32,7 @@
     platform/Cursor.cpp
     platform/LocalizedStrings.cpp
     platform/PlatformStrategies.cpp
+    platform/RunLoop.cpp
     platform/ScrollAnimatorWin.cpp
 
     platform/graphics/ImageSource.cpp
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to