Title: [100720] trunk/Tools
Revision
100720
Author
[email protected]
Date
2011-11-17 21:38:57 -0800 (Thu, 17 Nov 2011)

Log Message

[EFL] Move platform includes last in DRT's include directories.
https://bugs.webkit.org/show_bug.cgi?id=72684

Patch by Raphael Kubo da Costa <[email protected]> on 2011-11-17
Reviewed by Daniel Bates.

This is the first step in fixing the build when a platform include (in
this case, Valgrind 3.7.0 ships its config.h) and the wrong config.h
is included instead of WebKit's.

* DumpRenderTree/efl/CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (100719 => 100720)


--- trunk/Tools/ChangeLog	2011-11-18 05:30:05 UTC (rev 100719)
+++ trunk/Tools/ChangeLog	2011-11-18 05:38:57 UTC (rev 100720)
@@ -1,3 +1,16 @@
+2011-11-17  Raphael Kubo da Costa  <[email protected]>
+
+        [EFL] Move platform includes last in DRT's include directories.
+        https://bugs.webkit.org/show_bug.cgi?id=72684
+
+        Reviewed by Daniel Bates.
+
+        This is the first step in fixing the build when a platform include (in
+        this case, Valgrind 3.7.0 ships its config.h) and the wrong config.h
+        is included instead of WebKit's.
+
+        * DumpRenderTree/efl/CMakeLists.txt:
+
 2011-11-17  Ryosuke Niwa  <[email protected]>
 
         fuzzy_match doesn't recognize "Dan B" or "hyatt"

Modified: trunk/Tools/DumpRenderTree/efl/CMakeLists.txt (100719 => 100720)


--- trunk/Tools/DumpRenderTree/efl/CMakeLists.txt	2011-11-18 05:30:05 UTC (rev 100719)
+++ trunk/Tools/DumpRenderTree/efl/CMakeLists.txt	2011-11-18 05:38:57 UTC (rev 100720)
@@ -39,10 +39,6 @@
 SET(DumpRenderTree_LIBRARIES ${DumpRenderTree_LIBRARIES})
 SET(DumpRenderTree_INCLUDE_DIRECTORIES
     "${WEBKIT_DIR}/efl/ewk"
-    ${Cairo_INCLUDE_DIRS}
-    ${EDJE_INCLUDE_DIRS}
-    ${EFLDEPS_INCLUDE_DIRS}
-    ${EVAS_INCLUDE_DIRS}
     ${WEBKIT_DIR}/efl
     ${WEBCORE_DIR}
     ${WEBCORE_DIR}/bridge
@@ -84,6 +80,10 @@
     ${CMAKE_BINARY_DIR}
     ${DERIVED_SOURCES_WEBCORE_DIR}
     ${WEBCORE_DIR}/bindings/js
+    ${Cairo_INCLUDE_DIRS}
+    ${EDJE_INCLUDE_DIRS}
+    ${EFLDEPS_INCLUDE_DIRS}
+    ${EVAS_INCLUDE_DIRS}
 )
 
 SET(DumpRenderTree_LINK_FLAGS
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to