Title: [160938] trunk/Tools
- Revision
- 160938
- Author
- [email protected]
- Date
- 2013-12-20 15:46:12 -0800 (Fri, 20 Dec 2013)
Log Message
[GTK] [CMake] Add support for building ImageDiff
https://bugs.webkit.org/show_bug.cgi?id=125960
Reviewed by Gustavo Noronha Silva.
* CMakeLists.txt: Build ImageDiff for GTK+.
* ImageDiff/PlatformGTK.cmake: Added.
Modified Paths
Added Paths
Diff
Modified: trunk/Tools/CMakeLists.txt (160937 => 160938)
--- trunk/Tools/CMakeLists.txt 2013-12-20 23:44:11 UTC (rev 160937)
+++ trunk/Tools/CMakeLists.txt 2013-12-20 23:46:12 UTC (rev 160938)
@@ -16,6 +16,7 @@
endif ()
add_subdirectory(DumpRenderTree/TestNetscapePlugIn)
elseif ("${PORT}" STREQUAL "GTK")
+ add_subdirectory(ImageDiff)
if (ENABLE_WEBKIT2)
add_subdirectory(MiniBrowser/gtk)
endif ()
Modified: trunk/Tools/ChangeLog (160937 => 160938)
--- trunk/Tools/ChangeLog 2013-12-20 23:44:11 UTC (rev 160937)
+++ trunk/Tools/ChangeLog 2013-12-20 23:46:12 UTC (rev 160938)
@@ -1,5 +1,15 @@
2013-12-20 Martin Robinson <[email protected]>
+ [GTK] [CMake] Add support for building ImageDiff
+ https://bugs.webkit.org/show_bug.cgi?id=125960
+
+ Reviewed by Gustavo Noronha Silva.
+
+ * CMakeLists.txt: Build ImageDiff for GTK+.
+ * ImageDiff/PlatformGTK.cmake: Added.
+
+2013-12-20 Martin Robinson <[email protected]>
+
[GTK] [CMake] Add support for building DumpRenderTree
https://bugs.webkit.org/show_bug.cgi?id=125767
Added: trunk/Tools/ImageDiff/PlatformGTK.cmake (0 => 160938)
--- trunk/Tools/ImageDiff/PlatformGTK.cmake (rev 0)
+++ trunk/Tools/ImageDiff/PlatformGTK.cmake 2013-12-20 23:46:12 UTC (rev 160938)
@@ -0,0 +1,11 @@
+set(IMAGE_DIFF_SOURCES
+ ${IMAGE_DIFF_DIR}/gtk/ImageDiff.cpp
+)
+
+list(APPEND IMAGE_DIFF_INCLUDE_DIRECTORIES
+ ${GTK3_INCLUDE_DIRS}
+)
+
+list(APPEND IMAGE_DIFF_LIBRARIES
+ ${GTK3_LIBRARIES}
+)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes