Title: [175114] trunk/Source/WebKit2
Revision
175114
Author
[email protected]
Date
2014-10-23 02:35:46 -0700 (Thu, 23 Oct 2014)

Log Message

[EFL] Fix build problem after r175098
https://bugs.webkit.org/show_bug.cgi?id=138002

Reviewed by Gyuyoung Kim.

Add ECORE_X dependency to avoid linking problems while building unit tests.

* PlatformEfl.cmake:

Change-Id: I9228d141456c3b34b61424aa4715cef85534104f

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (175113 => 175114)


--- trunk/Source/WebKit2/ChangeLog	2014-10-23 09:33:20 UTC (rev 175113)
+++ trunk/Source/WebKit2/ChangeLog	2014-10-23 09:35:46 UTC (rev 175114)
@@ -1,5 +1,16 @@
 2014-10-23  Krzysztof Czech  <[email protected]>
 
+        [EFL] Fix build problem after r175098
+        https://bugs.webkit.org/show_bug.cgi?id=138002
+
+        Reviewed by Gyuyoung Kim.
+
+        Add ECORE_X dependency to avoid linking problems while building unit tests.
+
+        * PlatformEfl.cmake:
+
+2014-10-23  Krzysztof Czech  <[email protected]>
+
         [EFL] Set proper default value for WebPageAccessibilityObject
         https://bugs.webkit.org/show_bug.cgi?id=137951
 

Modified: trunk/Source/WebKit2/PlatformEfl.cmake (175113 => 175114)


--- trunk/Source/WebKit2/PlatformEfl.cmake	2014-10-23 09:33:20 UTC (rev 175113)
+++ trunk/Source/WebKit2/PlatformEfl.cmake	2014-10-23 09:35:46 UTC (rev 175114)
@@ -464,6 +464,12 @@
     gtest
 )
 
+if (ENABLE_ECORE_X)
+    list(APPEND EWK2UnitTests_LIBRARIES
+        ${ECORE_X_LIBRARIES}
+    )
+endif ()
+
 set(WEBKIT2_EFL_TEST_DIR "${WEBKIT2_DIR}/UIProcess/API/efl/tests")
 set(TEST_RESOURCES_DIR ${WEBKIT2_EFL_TEST_DIR}/resources)
 set(TEST_EXTENSIONS_DIR ${WEBKIT2_EFL_TEST_DIR}/extensions)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to