Title: [174060] trunk/Tools
Revision
174060
Author
[email protected]
Date
2014-09-29 08:16:22 -0700 (Mon, 29 Sep 2014)

Log Message

[GTK][CMake] TestWebCore target build sometimes fail
https://bugs.webkit.org/show_bug.cgi?id=137207

Reviewed by Csaba Osztrogon.

* TestWebKitAPI/PlatformGTK.cmake: Make sure the forwarding
headers are generated before the TestWebCore target is built.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (174059 => 174060)


--- trunk/Tools/ChangeLog	2014-09-29 12:32:24 UTC (rev 174059)
+++ trunk/Tools/ChangeLog	2014-09-29 15:16:22 UTC (rev 174060)
@@ -1,3 +1,13 @@
+2014-09-29  Philippe Normand  <[email protected]>
+
+        [GTK][CMake] TestWebCore target build sometimes fail
+        https://bugs.webkit.org/show_bug.cgi?id=137207
+
+        Reviewed by Csaba Osztrogon.
+
+        * TestWebKitAPI/PlatformGTK.cmake: Make sure the forwarding
+        headers are generated before the TestWebCore target is built.
+
 2014-09-29  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Remove IntPointGtk.cpp and IntRectGtk.cpp

Modified: trunk/Tools/TestWebKitAPI/PlatformGTK.cmake (174059 => 174060)


--- trunk/Tools/TestWebKitAPI/PlatformGTK.cmake	2014-09-29 12:32:24 UTC (rev 174059)
+++ trunk/Tools/TestWebKitAPI/PlatformGTK.cmake	2014-09-29 15:16:22 UTC (rev 174060)
@@ -130,6 +130,8 @@
 )
 
 target_link_libraries(TestWebCore ${test_webcore_LIBRARIES})
+add_dependencies(TestWebCore ${ForwardingHeadersForTestWebKitAPI_NAME})
+
 add_test(TestWebCore ${TESTWEBKITAPI_RUNTIME_OUTPUT_DIRECTORY}/WebCore/TestWebCore)
 set_tests_properties(TestWebCore PROPERTIES TIMEOUT 60)
 set_target_properties(TestWebCore PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${TESTWEBKITAPI_RUNTIME_OUTPUT_DIRECTORY}/WebCore)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to