Changeset 161016 in webkit


Ignore:
Timestamp:
Dec 23, 2013 1:49:43 PM (10 years ago)
Author:
Martin Robinson
Message:

[GTK] [CMake] Build the WebKit2 GObject API tests
https://bugs.webkit.org/show_bug.cgi?id=125683

Reviewed by Daniel Bates.

.:

  • Source/PlatformGTK.cmake: Load the WebKit2 tests file if necessary.
  • Source/cmake/FindATSPI.cmake: Added.
  • Source/cmake/OptionsGTK.cmake: Look for AT-SPI, but don't fail if it isn't found.

Source/WebKit2:

  • UIProcess/API/gtk/tests/CMakeLists.txt: Added.
Location:
trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r161015 r161016  
     12013-12-23  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] [CMake] Build the WebKit2 GObject API tests
     4        https://bugs.webkit.org/show_bug.cgi?id=125683
     5
     6        Reviewed by Daniel Bates.
     7
     8        * Source/PlatformGTK.cmake: Load the WebKit2 tests file if necessary.
     9        * Source/cmake/FindATSPI.cmake: Added.
     10        * Source/cmake/OptionsGTK.cmake: Look for AT-SPI, but don't fail if it isn't found.
     11
    1122013-12-23  Martin Robinson  <mrobinson@igalia.com>
    213
  • trunk/Source/PlatformGTK.cmake

    r161015 r161016  
    22    add_subdirectory(${WEBKIT_DIR}/gtk/tests)
    33endif ()
     4
     5if (ENABLE_WEBKIT2)
     6    add_subdirectory(${WEBKIT2_DIR}/UIProcess/API/gtk/tests)
     7endif ()
  • trunk/Source/WebKit2/ChangeLog

    r161013 r161016  
     12013-12-23  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] [CMake] Build the WebKit2 GObject API tests
     4        https://bugs.webkit.org/show_bug.cgi?id=125683
     5
     6        Reviewed by Daniel Bates.
     7
     8        * UIProcess/API/gtk/tests/CMakeLists.txt: Added.
     9
    1102013-12-23  Tim Horton  <timothy_horton@apple.com>
    211
  • trunk/Source/cmake/OptionsGTK.cmake

    r160994 r161016  
    150150find_package(WebP REQUIRED)
    151151find_package(GStreamer 1.0.3 REQUIRED COMPONENTS ${GSTREAMER_COMPONENTS})
     152find_package(ATSPI 2.5.3)
    152153
    153154# We don't use find_package for GLX because it is part of -lGL, unlike EGL.
Note: See TracChangeset for help on using the changeset viewer.