commit-queue@webkit.org | d6fb2c5 | 2012-12-06 03:10:13 +0000 | [diff] [blame] | 1 | set(TESTWEBKITAPI_DIR "${TOOLS_DIR}/TestWebKitAPI") |
mrobinson@webkit.org | cf0e3e9 | 2013-08-14 21:00:39 +0000 | [diff] [blame] | 2 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 3 | get_property(gtest_DEFINITIONS GLOBAL PROPERTY gtest_DEFINITIONS) |
| 4 | add_definitions(${gtest_DEFINITIONS}) |
mrobinson@webkit.org | cf0e3e9 | 2013-08-14 21:00:39 +0000 | [diff] [blame] | 5 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 6 | macro(WEBKIT_TEST _target) |
| 7 | WEBKIT_EXECUTABLE(${_target}) |
| 8 | add_test(${_target} ${TESTWEBKITAPI_RUNTIME_OUTPUT_DIRECTORY}/${_target}) |
| 9 | set_tests_properties(${_target} PROPERTIES TIMEOUT 60) |
| 10 | set_target_properties(${_target} PROPERTIES |
| 11 | RUNTIME_OUTPUT_DIRECTORY ${TESTWEBKITAPI_RUNTIME_OUTPUT_DIRECTORY} |
achristensen@apple.com | b2b99b6 | 2015-08-11 00:09:07 +0000 | [diff] [blame] | 12 | ) |
carlosgc@webkit.org | f7e0d8a | 2017-11-20 09:51:07 +0000 | [diff] [blame] | 13 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 14 | if (COMPILER_IS_GCC_OR_CLANG) |
| 15 | WEBKIT_ADD_TARGET_CXX_FLAGS(${_target} -Wno-dangling-else |
| 16 | -Wno-sign-compare |
| 17 | -Wno-undef |
| 18 | -Wno-unused-parameter) |
| 19 | endif () |
| 20 | endmacro() |
carlosgc@webkit.org | f7e0d8a | 2017-11-20 09:51:07 +0000 | [diff] [blame] | 21 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 22 | # TestWTF definitions |
zandobersek@gmail.com | 3cd1f6e | 2014-08-14 16:08:24 +0000 | [diff] [blame] | 23 | set(TestWTF_SOURCES |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 24 | Counters.cpp |
| 25 | TestsController.cpp |
weinig@apple.com | ca35764 | 2019-07-17 21:18:30 +0000 | [diff] [blame] | 26 | WTFStringUtilities.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 27 | |
darin@apple.com | 0ce67df | 2019-06-17 01:48:13 +0000 | [diff] [blame] | 28 | Tests/WTF/AtomString.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 29 | Tests/WTF/BloomFilter.cpp |
| 30 | Tests/WTF/CString.cpp |
| 31 | Tests/WTF/CheckedArithmeticOperations.cpp |
| 32 | Tests/WTF/ConcurrentPtrHashSet.cpp |
| 33 | Tests/WTF/Condition.cpp |
Hironori.Fujii@sony.com | f7d2ef9 | 2019-06-20 00:51:30 +0000 | [diff] [blame] | 34 | Tests/WTF/CrossThreadCopier.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 35 | Tests/WTF/CrossThreadTask.cpp |
aboya@igalia.com | 079458f | 2019-07-23 14:51:29 +0000 | [diff] [blame] | 36 | Tests/WTF/DataMutex.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 37 | Tests/WTF/DateMath.cpp |
| 38 | Tests/WTF/Deque.cpp |
| 39 | Tests/WTF/EnumTraits.cpp |
| 40 | Tests/WTF/Expected.cpp |
| 41 | Tests/WTF/FileSystem.cpp |
| 42 | Tests/WTF/Function.cpp |
| 43 | Tests/WTF/HashCountedSet.cpp |
| 44 | Tests/WTF/HashMap.cpp |
| 45 | Tests/WTF/HashSet.cpp |
| 46 | Tests/WTF/Hasher.cpp |
| 47 | Tests/WTF/IntegerToStringConversion.cpp |
| 48 | Tests/WTF/IteratorRange.cpp |
| 49 | Tests/WTF/JSONValue.cpp |
| 50 | Tests/WTF/LEBDecoder.cpp |
| 51 | Tests/WTF/LifecycleLogger.cpp |
| 52 | Tests/WTF/LineEnding.cpp |
| 53 | Tests/WTF/ListHashSet.cpp |
| 54 | Tests/WTF/Lock.cpp |
| 55 | Tests/WTF/Logger.cpp |
| 56 | Tests/WTF/MD5.cpp |
| 57 | Tests/WTF/Markable.cpp |
| 58 | Tests/WTF/MathExtras.cpp |
| 59 | Tests/WTF/MediaTime.cpp |
| 60 | Tests/WTF/MetaAllocator.cpp |
| 61 | Tests/WTF/MoveOnlyLifecycleLogger.cpp |
| 62 | Tests/WTF/NakedPtr.cpp |
| 63 | Tests/WTF/NeverDestroyed.cpp |
| 64 | Tests/WTF/OptionSet.cpp |
| 65 | Tests/WTF/Optional.cpp |
ysuzuki@apple.com | dafef97 | 2019-05-12 22:50:21 +0000 | [diff] [blame] | 66 | Tests/WTF/Packed.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 67 | Tests/WTF/ParkingLot.cpp |
| 68 | Tests/WTF/PriorityQueue.cpp |
| 69 | Tests/WTF/RedBlackTree.cpp |
| 70 | Tests/WTF/Ref.cpp |
| 71 | Tests/WTF/RefCounter.cpp |
| 72 | Tests/WTF/RefLogger.cpp |
| 73 | Tests/WTF/RefPtr.cpp |
| 74 | Tests/WTF/RunLoop.cpp |
| 75 | Tests/WTF/SHA1.cpp |
| 76 | Tests/WTF/SaturatedArithmeticOperations.cpp |
| 77 | Tests/WTF/Scope.cpp |
| 78 | Tests/WTF/ScopedLambda.cpp |
| 79 | Tests/WTF/SetForScope.cpp |
| 80 | Tests/WTF/StringBuilder.cpp |
| 81 | Tests/WTF/StringConcatenate.cpp |
| 82 | Tests/WTF/StringHasher.cpp |
| 83 | Tests/WTF/StringImpl.cpp |
| 84 | Tests/WTF/StringOperators.cpp |
| 85 | Tests/WTF/StringView.cpp |
| 86 | Tests/WTF/SynchronizedFixedQueue.cpp |
| 87 | Tests/WTF/TextBreakIterator.cpp |
| 88 | Tests/WTF/ThreadGroup.cpp |
| 89 | Tests/WTF/ThreadMessages.cpp |
| 90 | Tests/WTF/Threading.cpp |
| 91 | Tests/WTF/Time.cpp |
| 92 | Tests/WTF/URL.cpp |
| 93 | Tests/WTF/URLParser.cpp |
| 94 | Tests/WTF/UniqueArray.cpp |
| 95 | Tests/WTF/UniqueRef.cpp |
| 96 | Tests/WTF/Variant.cpp |
| 97 | Tests/WTF/Vector.cpp |
| 98 | Tests/WTF/WTFString.cpp |
| 99 | Tests/WTF/WeakPtr.cpp |
| 100 | Tests/WTF/WorkQueue.cpp |
| 101 | Tests/WTF/WorkerPool.cpp |
zandobersek@gmail.com | 3cd1f6e | 2014-08-14 16:08:24 +0000 | [diff] [blame] | 102 | ) |
| 103 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 104 | set(TestWTF_PRIVATE_INCLUDE_DIRECTORIES |
| 105 | ${CMAKE_BINARY_DIR} |
| 106 | ${TESTWEBKITAPI_DIR} |
| 107 | ${THIRDPARTY_DIR}/gtest/include |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 108 | ) |
| 109 | |
| 110 | set(TestWTF_LIBRARIES |
don.olmstead@sony.com | 13a35d3 | 2019-05-31 16:56:03 +0000 | [diff] [blame] | 111 | WebKit::WTF |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 112 | gtest |
| 113 | ) |
| 114 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 115 | WEBKIT_EXECUTABLE_DECLARE(TestWTF) |
| 116 | |
| 117 | # TestWebCore definitions |
| 118 | if (ENABLE_WEBCORE) |
| 119 | set(TestWebCore_SOURCES |
| 120 | TestsController.cpp |
weinig@apple.com | ca35764 | 2019-07-17 21:18:30 +0000 | [diff] [blame] | 121 | WTFStringUtilities.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 122 | |
| 123 | Tests/WebCore/AffineTransform.cpp |
| 124 | Tests/WebCore/CSSParser.cpp |
| 125 | Tests/WebCore/CalculationValue.cpp |
| 126 | Tests/WebCore/ComplexTextController.cpp |
| 127 | Tests/WebCore/FileMonitor.cpp |
| 128 | Tests/WebCore/FloatPoint.cpp |
| 129 | Tests/WebCore/FloatRect.cpp |
| 130 | Tests/WebCore/FloatSize.cpp |
| 131 | Tests/WebCore/GridPosition.cpp |
| 132 | Tests/WebCore/HTMLParserIdioms.cpp |
aperez@igalia.com | 302a03d | 2019-09-12 15:33:31 +0000 | [diff] [blame] | 133 | Tests/WebCore/HTTPParsers.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 134 | Tests/WebCore/IntPoint.cpp |
| 135 | Tests/WebCore/IntRect.cpp |
| 136 | Tests/WebCore/IntSize.cpp |
| 137 | Tests/WebCore/LayoutUnit.cpp |
| 138 | Tests/WebCore/MIMETypeRegistry.cpp |
| 139 | Tests/WebCore/ParsedContentRange.cpp |
| 140 | Tests/WebCore/PublicSuffix.cpp |
| 141 | Tests/WebCore/SecurityOrigin.cpp |
| 142 | Tests/WebCore/SharedBuffer.cpp |
| 143 | Tests/WebCore/SharedBufferTest.cpp |
| 144 | Tests/WebCore/TimeRanges.cpp |
| 145 | Tests/WebCore/TransformationMatrix.cpp |
| 146 | Tests/WebCore/URLParserTextEncoding.cpp |
ross.kirsling@sony.com | 5035543 | 2019-01-24 17:25:57 +0000 | [diff] [blame] | 147 | ) |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 148 | |
| 149 | set(TestWebCore_LIBRARIES |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 150 | WebCoreTestSupport |
| 151 | gtest |
| 152 | ) |
achristensen@apple.com | 7dbad2c | 2019-10-02 03:12:49 +0000 | [diff] [blame] | 153 | if (NOT APPLE) |
| 154 | list(APPEND TestWebCore_LIBRARIES WebCore) |
| 155 | endif () |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 156 | |
| 157 | set(TestWebCore_PRIVATE_INCLUDE_DIRECTORIES |
| 158 | ${CMAKE_BINARY_DIR} |
| 159 | ${TESTWEBKITAPI_DIR} |
| 160 | ${THIRDPARTY_DIR}/gtest/include |
| 161 | ${PAL_FRAMEWORK_HEADERS_DIR} |
| 162 | ${WebCore_PRIVATE_FRAMEWORK_HEADERS_DIR} |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 163 | ) |
| 164 | |
| 165 | set(TestWebCore_DEPENDENCIES WebCorePrivateFrameworkHeaders) |
| 166 | |
| 167 | WEBKIT_EXECUTABLE_DECLARE(TestWebCore) |
ross.kirsling@sony.com | 5035543 | 2019-01-24 17:25:57 +0000 | [diff] [blame] | 168 | endif () |
| 169 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 170 | # TestWebKitLegacy definitions |
| 171 | if (ENABLE_WEBKIT_LEGACY) |
| 172 | set(TestWebKitLegacy_SOURCES |
| 173 | TestsController.cpp |
weinig@apple.com | ca35764 | 2019-07-17 21:18:30 +0000 | [diff] [blame] | 174 | WTFStringUtilities.cpp |
achristensen@apple.com | b2b99b6 | 2015-08-11 00:09:07 +0000 | [diff] [blame] | 175 | ) |
commit-queue@webkit.org | a90a9de | 2012-07-18 15:07:34 +0000 | [diff] [blame] | 176 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 177 | set(TestWebKitLegacy_LIBRARIES |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 178 | gtest |
| 179 | ) |
achristensen@apple.com | 7dbad2c | 2019-10-02 03:12:49 +0000 | [diff] [blame] | 180 | if (NOT APPLE) |
| 181 | list(APPEND TestWebKitLegacy_LIBRARIES |
| 182 | WebKitLegacy |
| 183 | ) |
| 184 | endif () |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 185 | |
| 186 | set(TestWebKitLegacy_PRIVATE_INCLUDE_DIRECTORIES |
| 187 | ${CMAKE_BINARY_DIR} |
| 188 | ${TESTWEBKITAPI_DIR} |
| 189 | ${THIRDPARTY_DIR}/gtest/include |
| 190 | ${PAL_FRAMEWORK_HEADERS_DIR} |
| 191 | ${WebCore_PRIVATE_FRAMEWORK_HEADERS_DIR} |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 192 | ${WebKitLegacy_FRAMEWORK_HEADERS_DIR} |
| 193 | ) |
| 194 | |
| 195 | set(TestWebKitLegacy_DEPENDENCIES WebKitLegacyFrameworkHeaders) |
| 196 | |
| 197 | WEBKIT_EXECUTABLE_DECLARE(TestWebKitLegacy) |
| 198 | endif () |
| 199 | |
| 200 | # TestWebKit definitions |
| 201 | if (ENABLE_WEBKIT) |
| 202 | set(TestWebKit_SOURCES |
| 203 | Tests/WebKit/AboutBlankLoad.cpp |
| 204 | Tests/WebKit/CanHandleRequest.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 205 | Tests/WebKit/DOMWindowExtensionBasic.cpp |
| 206 | Tests/WebKit/DOMWindowExtensionNoCache.cpp |
| 207 | Tests/WebKit/DocumentStartUserScriptAlertCrash.cpp |
| 208 | Tests/WebKit/DownloadDecideDestinationCrash.cpp |
| 209 | Tests/WebKit/EnumerateMediaDevices.cpp |
| 210 | Tests/WebKit/EvaluateJavaScript.cpp |
| 211 | Tests/WebKit/FailedLoad.cpp |
| 212 | Tests/WebKit/Find.cpp |
| 213 | Tests/WebKit/FirstMeaningfulPaintMilestone.cpp |
| 214 | Tests/WebKit/ForceRepaint.cpp |
| 215 | Tests/WebKit/FrameMIMETypeHTML.cpp |
| 216 | Tests/WebKit/FrameMIMETypePNG.cpp |
| 217 | Tests/WebKit/Geolocation.cpp |
| 218 | Tests/WebKit/GetInjectedBundleInitializationUserDataCallback.cpp |
| 219 | Tests/WebKit/HitTestResultNodeHandle.cpp |
| 220 | Tests/WebKit/InjectedBundleBasic.cpp |
| 221 | Tests/WebKit/InjectedBundleFrameHitTest.cpp |
| 222 | Tests/WebKit/InjectedBundleInitializationUserDataCallbackWins.cpp |
| 223 | Tests/WebKit/LoadAlternateHTMLStringWithNonDirectoryURL.cpp |
| 224 | Tests/WebKit/LoadCanceledNoServerRedirectCallback.cpp |
| 225 | Tests/WebKit/LoadPageOnCrash.cpp |
| 226 | Tests/WebKit/MouseMoveAfterCrash.cpp |
| 227 | Tests/WebKit/NewFirstVisuallyNonEmptyLayout.cpp |
| 228 | Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFails.cpp |
| 229 | Tests/WebKit/NewFirstVisuallyNonEmptyLayoutForImages.cpp |
| 230 | Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFrames.cpp |
| 231 | Tests/WebKit/PageLoadBasic.cpp |
| 232 | Tests/WebKit/PageLoadDidChangeLocationWithinPageForFrame.cpp |
Hironori.Fujii@sony.com | 997d293 | 2019-07-31 05:13:18 +0000 | [diff] [blame] | 233 | Tests/WebKit/PageLoadState.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 234 | Tests/WebKit/ParentFrame.cpp |
| 235 | Tests/WebKit/PendingAPIRequestURL.cpp |
| 236 | Tests/WebKit/PreventEmptyUserAgent.cpp |
| 237 | Tests/WebKit/PrivateBrowsingPushStateNoHistoryCallback.cpp |
| 238 | Tests/WebKit/ProvisionalURLAfterWillSendRequestCallback.cpp |
| 239 | Tests/WebKit/ReloadPageAfterCrash.cpp |
| 240 | Tests/WebKit/ResizeWindowAfterCrash.cpp |
| 241 | Tests/WebKit/RestoreSessionStateContainingFormData.cpp |
| 242 | Tests/WebKit/TextFieldDidBeginAndEndEditing.cpp |
| 243 | Tests/WebKit/UserMedia.cpp |
| 244 | Tests/WebKit/UserMessage.cpp |
| 245 | Tests/WebKit/WKPageCopySessionStateWithFiltering.cpp |
| 246 | Tests/WebKit/WKPageGetScaleFactorNotZero.cpp |
| 247 | Tests/WebKit/WKPreferences.cpp |
| 248 | Tests/WebKit/WKRetainPtr.cpp |
| 249 | Tests/WebKit/WKString.cpp |
| 250 | Tests/WebKit/WKStringJSString.cpp |
| 251 | Tests/WebKit/WKURL.cpp |
| 252 | Tests/WebKit/WillSendSubmitEvent.cpp |
| 253 | ) |
| 254 | |
| 255 | set(TestWebKit_PRIVATE_INCLUDE_DIRECTORIES |
| 256 | ${CMAKE_BINARY_DIR} |
| 257 | ${TESTWEBKITAPI_DIR} |
| 258 | ${THIRDPARTY_DIR}/gtest/include |
| 259 | ${PAL_FRAMEWORK_HEADERS_DIR} |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 260 | ${WebCore_PRIVATE_FRAMEWORK_HEADERS_DIR} |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 261 | ${WebKit_FRAMEWORK_HEADERS_DIR} |
| 262 | ) |
| 263 | |
| 264 | set(TestWebKit_LIBRARIES |
| 265 | TestWebKitAPIBase |
| 266 | WebKit |
| 267 | gtest |
| 268 | ) |
| 269 | |
| 270 | set(TestWebKit_DEPENDENCIES |
| 271 | NetworkProcess |
| 272 | TestWebKitAPIInjectedBundle |
| 273 | WebProcess |
| 274 | ) |
| 275 | |
| 276 | add_library(TestWebKitAPIBase STATIC |
| 277 | JavaScriptTest.cpp |
| 278 | PlatformUtilities.cpp |
| 279 | TestsController.cpp |
weinig@apple.com | ca35764 | 2019-07-17 21:18:30 +0000 | [diff] [blame] | 280 | WTFStringUtilities.cpp |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 281 | ) |
| 282 | target_compile_definitions(TestWebKitAPIBase PRIVATE BUILDING_TestWebKit) |
| 283 | target_include_directories(TestWebKitAPIBase PRIVATE ${TestWebKit_PRIVATE_INCLUDE_DIRECTORIES}) |
| 284 | target_link_libraries(TestWebKitAPIBase PRIVATE WebKit gtest) |
| 285 | |
| 286 | if (COMPILER_IS_GCC_OR_CLANG) |
| 287 | WEBKIT_ADD_TARGET_CXX_FLAGS(TestWebKitAPIBase -Wno-dangling-else |
| 288 | -Wno-sign-compare |
| 289 | -Wno-undef |
| 290 | -Wno-unused-parameter) |
| 291 | endif () |
| 292 | |
achristensen@apple.com | 7dbad2c | 2019-10-02 03:12:49 +0000 | [diff] [blame] | 293 | set(TestWebKitAPIInjectedBundle_SOURCES |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 294 | InjectedBundleController.cpp |
| 295 | InjectedBundleMain.cpp |
| 296 | PlatformUtilities.cpp |
| 297 | Tests/WebKit/CanHandleRequest_Bundle.cpp |
| 298 | Tests/WebKit/DidAssociateFormControls_Bundle.cpp |
| 299 | Tests/WebKit/DOMWindowExtensionBasic_Bundle.cpp |
| 300 | Tests/WebKit/DOMWindowExtensionNoCache_Bundle.cpp |
| 301 | Tests/WebKit/DocumentStartUserScriptAlertCrash_Bundle.cpp |
| 302 | Tests/WebKit/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp |
| 303 | Tests/WebKit/HitTestResultNodeHandle_Bundle.cpp |
| 304 | Tests/WebKit/InjectedBundleBasic_Bundle.cpp |
| 305 | Tests/WebKit/InjectedBundleFrameHitTest_Bundle.cpp |
| 306 | Tests/WebKit/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp |
| 307 | Tests/WebKit/LoadCanceledNoServerRedirectCallback_Bundle.cpp |
| 308 | Tests/WebKit/MouseMoveAfterCrash_Bundle.cpp |
| 309 | Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp |
| 310 | Tests/WebKit/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp |
| 311 | Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp |
| 312 | Tests/WebKit/NewFirstVisuallyNonEmptyLayout_Bundle.cpp |
| 313 | Tests/WebKit/FirstMeaningfulPaintMilestone_Bundle.cpp |
| 314 | Tests/WebKit/ParentFrame_Bundle.cpp |
| 315 | Tests/WebKit/ProvisionalURLAfterWillSendRequestCallback_Bundle.cpp |
| 316 | Tests/WebKit/ResponsivenessTimerDoesntFireEarly_Bundle.cpp |
| 317 | Tests/WebKit/TextFieldDidBeginAndEndEditing_Bundle.cpp |
| 318 | Tests/WebKit/UserMessage_Bundle.cpp |
| 319 | Tests/WebKit/WillLoad_Bundle.cpp |
| 320 | Tests/WebKit/WillSendSubmitEvent_Bundle.cpp |
| 321 | ) |
achristensen@apple.com | 7dbad2c | 2019-10-02 03:12:49 +0000 | [diff] [blame] | 322 | if (APPLE) |
| 323 | list(APPEND TestWebKitAPIInjectedBundle_SOURCES |
| 324 | Tests/WebKit/DOMWindowExtensionBasic_Bundle.cpp |
| 325 | |
| 326 | cocoa/UtilitiesCocoa.mm |
| 327 | |
| 328 | mac/InjectedBundleControllerMac.mm |
| 329 | mac/PlatformUtilitiesMac.mm |
| 330 | ) |
| 331 | endif () |
| 332 | add_library(TestWebKitAPIInjectedBundle SHARED ${TestWebKitAPIInjectedBundle_SOURCES}) |
| 333 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 334 | target_compile_definitions(TestWebKitAPIInjectedBundle PRIVATE BUILDING_TestWebKit) |
| 335 | target_include_directories(TestWebKitAPIInjectedBundle PRIVATE ${TestWebKit_PRIVATE_INCLUDE_DIRECTORIES}) |
achristensen@apple.com | 7dbad2c | 2019-10-02 03:12:49 +0000 | [diff] [blame] | 336 | target_link_libraries(TestWebKitAPIInjectedBundle PRIVATE WebKit WTF) |
mcatanzaro@igalia.com | 8b224d4 | 2017-08-08 15:03:48 +0000 | [diff] [blame] | 337 | |
| 338 | if (COMPILER_IS_GCC_OR_CLANG) |
| 339 | WEBKIT_ADD_TARGET_CXX_FLAGS(TestWebKitAPIInjectedBundle -Wno-dangling-else |
| 340 | -Wno-sign-compare |
| 341 | -Wno-undef |
| 342 | -Wno-unused-parameter) |
| 343 | endif () |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 344 | |
| 345 | WEBKIT_EXECUTABLE_DECLARE(TestWebKit) |
achristensen@apple.com | b2b99b6 | 2015-08-11 00:09:07 +0000 | [diff] [blame] | 346 | endif () |
gyuyoung.kim@webkit.org | e482a5a | 2015-06-06 01:19:36 +0000 | [diff] [blame] | 347 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 348 | # Include platform specific files |
| 349 | WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS() |
achristensen@apple.com | 57b4c9d | 2015-08-20 19:08:06 +0000 | [diff] [blame] | 350 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 351 | # TestWTF target |
| 352 | WEBKIT_TEST(TestWTF) |
commit-queue@webkit.org | a90a9de | 2012-07-18 15:07:34 +0000 | [diff] [blame] | 353 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 354 | # TestWebCore target |
| 355 | if (ENABLE_WEBCORE) |
| 356 | WEBKIT_TEST(TestWebCore) |
achristensen@apple.com | 52743ce | 2015-08-28 00:04:52 +0000 | [diff] [blame] | 357 | endif () |
| 358 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 359 | # TestWebKitLegacy target |
| 360 | if (ENABLE_WEBKIT_LEGACY) |
| 361 | WEBKIT_TEST(TestWebKitLegacy) |
mcatanzaro@igalia.com | 8b224d4 | 2017-08-08 15:03:48 +0000 | [diff] [blame] | 362 | endif () |
| 363 | |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 364 | # TestWebKit target |
carlosgc@webkit.org | 3881ca2 | 2017-07-25 11:36:48 +0000 | [diff] [blame] | 365 | if (ENABLE_WEBKIT) |
don.olmstead@sony.com | 8780ccb | 2019-05-01 23:47:28 +0000 | [diff] [blame] | 366 | WEBKIT_TEST(TestWebKit) |
achristensen@apple.com | b2b99b6 | 2015-08-11 00:09:07 +0000 | [diff] [blame] | 367 | endif () |