123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- add_custom_target(forwarding-headersEflForTestWebKitAPI
- COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${WEBKIT2_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include efl
- COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${WEBKIT2_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include CoordinatedGraphics
- COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${TESTWEBKITAPI_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include efl
- )
- set(ForwardingHeadersForTestWebKitAPI_NAME forwarding-headersEflForTestWebKitAPI)
- add_custom_target(forwarding-headersSoupForTestWebKitAPI
- COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${WEBKIT2_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include soup
- COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${TESTWEBKITAPI_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include soup
- )
- set(ForwardingNetworkHeadersForTestWebKitAPI_NAME forwarding-headersSoupForTestWebKitAPI)
- include_directories(
- ${WEBKIT2_DIR}/UIProcess/API/C/CoordinatedGraphics
- ${WEBKIT2_DIR}/UIProcess/API/C/soup
- ${WEBKIT2_DIR}/UIProcess/API/C/efl
- ${WEBKIT2_DIR}/UIProcess/API/efl
- ${ECORE_EVAS_INCLUDE_DIRS}
- ${ECORE_INCLUDE_DIRS}
- ${EINA_INCLUDE_DIRS}
- ${EO_INCLUDE_DIRS}
- ${EVAS_INCLUDE_DIRS}
- ${GLIB_INCLUDE_DIRS}
- ${LIBSOUP_INCLUDE_DIRS}
- )
- set(test_main_SOURCES
- ${TESTWEBKITAPI_DIR}/efl/main.cpp
- )
- set(bundle_harness_SOURCES
- ${TESTWEBKITAPI_DIR}/efl/InjectedBundleController.cpp
- ${TESTWEBKITAPI_DIR}/efl/PlatformUtilities.cpp
- )
- set(webkit2_api_harness_SOURCES
- ${TESTWEBKITAPI_DIR}/efl/PlatformUtilities.cpp
- ${TESTWEBKITAPI_DIR}/efl/PlatformWebView.cpp
- )
- # The list below works like a test expectation. Tests in the
- # test_{webkit2_api|webcore}_BINARIES list are added to the test runner and
- # tried on the bots on every build. Tests in test_{webkit2_api|webcore}_BINARIES
- # are compiled and suffixed with fail and skipped from the test runner.
- #
- # Make sure that the tests are passing on both Debug and
- # Release builds before adding it to test_{webkit2_api|webcore}_BINARIES.
- set(test_webcore_BINARIES
- LayoutUnit
- KURL
- )
- # In here we list the bundles that are used by our specific WK2 API Tests
- list(APPEND bundle_harness_SOURCES
- ${TESTWEBKITAPI_DIR}/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks_Bundle.cpp
- )
- set(test_webkit2_api_BINARIES
- AboutBlankLoad
- CookieManager
- DOMWindowExtensionNoCache
- DocumentStartUserScriptAlertCrash
- EvaluateJavaScript
- FailedLoad
- Find
- ForceRepaint
- FrameMIMETypeHTML
- FrameMIMETypePNG
- GetInjectedBundleInitializationUserDataCallback
- HitTestResultNodeHandle
- InjectedBundleBasic
- InjectedBundleFrameHitTest
- InjectedBundleInitializationUserDataCallbackWins
- LoadAlternateHTMLStringWithNonDirectoryURL
- LoadCanceledNoServerRedirectCallback
- LoadPageOnCrash
- MouseMoveAfterCrash
- ReloadPageAfterCrash
- ResizeWindowAfterCrash
- NewFirstVisuallyNonEmptyLayout
- NewFirstVisuallyNonEmptyLayoutFails
- NewFirstVisuallyNonEmptyLayoutForImages
- PageLoadBasic
- PageLoadDidChangeLocationWithinPageForFrame
- ParentFrame
- PreventEmptyUserAgent
- PrivateBrowsingPushStateNoHistoryCallback
- UserMessage
- WKConnection
- WKPreferences
- WKString
- WKStringJSString
- WKURL
- WillSendSubmitEvent
- CoordinatedGraphics/WKViewUserViewportToContents
- efl/WKViewClientWebProcessCallbacks
- )
- # Seccomp filters is an internal API and its symbols
- # are not (and should not) be exposed by default. We
- # can only test it when building shared core.
- if (ENABLE_SECCOMP_FILTERS AND SHARED_CORE)
- list(APPEND test_webkit2_api_BINARIES
- SeccompFilters
- )
- endif ()
- set(test_webkit2_api_fail_BINARIES
- CanHandleRequest
- DOMWindowExtensionBasic
- DownloadDecideDestinationCrash
- NewFirstVisuallyNonEmptyLayoutFrames
- RestoreSessionStateContainingFormData
- ShouldGoToBackForwardListItem
- WKPageGetScaleFactorNotZero
- )
- # Tests disabled because of missing features on the test harness:
- #
- # ResponsivenessTimerDoesntFireEarly
- # SpacebarScrolling
|