commit-queue@webkit.org | cdb41fe | 2015-10-30 04:14:34 +0000 | [diff] [blame] | 1 | set(WebCore_LIBRARY_TYPE SHARED) |
| 2 | |
| 3 | if ("${CURRENT_OSX_VERSION}" MATCHES "10.9") |
| 4 | set(WEBKITSYSTEMINTERFACE_LIBRARY libWebKitSystemInterfaceMavericks.a) |
| 5 | elif ("${CURRENT_OSX_VERSION}" MATCHES "10.10") |
| 6 | set(WEBKITSYSTEMINTERFACE_LIBRARY libWebKitSystemInterfaceYosemite.a) |
lforschler@apple.com | c1a2395 | 2016-06-08 18:37:13 +0000 | [diff] [blame] | 7 | else () |
commit-queue@webkit.org | 2ea2d90 | 2016-06-09 18:52:27 +0000 | [diff] [blame] | 8 | set(WEBKITSYSTEMINTERFACE_LIBRARY libWebKitSystemInterfaceElCapitan.a) |
commit-queue@webkit.org | cdb41fe | 2015-10-30 04:14:34 +0000 | [diff] [blame] | 9 | endif () |
| 10 | link_directories(../../WebKitLibraries) |
| 11 | |
| 12 | find_library(ACCELERATE_LIBRARY accelerate) |
achristensen@apple.com | ee72aed | 2016-05-25 19:49:46 +0000 | [diff] [blame] | 13 | find_library(APPLICATIONSERVICES_LIBRARY ApplicationServices) |
achristensen@apple.com | 672f259 | 2016-03-27 01:05:12 +0000 | [diff] [blame] | 14 | find_library(AVFOUNDATION_LIBRARY AVFoundation) |
commit-queue@webkit.org | cdb41fe | 2015-10-30 04:14:34 +0000 | [diff] [blame] | 15 | find_library(AUDIOTOOLBOX_LIBRARY AudioToolbox) |
| 16 | find_library(AUDIOUNIT_LIBRARY AudioUnit) |
| 17 | find_library(CARBON_LIBRARY Carbon) |
| 18 | find_library(COCOA_LIBRARY Cocoa) |
| 19 | find_library(COREAUDIO_LIBRARY CoreAudio) |
| 20 | find_library(DISKARBITRATION_LIBRARY DiskArbitration) |
| 21 | find_library(IOKIT_LIBRARY IOKit) |
| 22 | find_library(IOSURFACE_LIBRARY IOSurface) |
achristensen@apple.com | b9d13d2 | 2017-03-10 03:43:10 +0000 | [diff] [blame] | 23 | find_library(METAL_LIBRARY Metal) |
commit-queue@webkit.org | cdb41fe | 2015-10-30 04:14:34 +0000 | [diff] [blame] | 24 | find_library(OPENGL_LIBRARY OpenGL) |
| 25 | find_library(QUARTZ_LIBRARY Quartz) |
| 26 | find_library(QUARTZCORE_LIBRARY QuartzCore) |
| 27 | find_library(SECURITY_LIBRARY Security) |
| 28 | find_library(SYSTEMCONFIGURATION_LIBRARY SystemConfiguration) |
| 29 | find_library(SQLITE3_LIBRARY sqlite3) |
| 30 | find_library(XML2_LIBRARY XML2) |
| 31 | find_package(ZLIB REQUIRED) |
| 32 | |
| 33 | list(APPEND WebCore_LIBRARIES |
| 34 | ${ACCELERATE_LIBRARY} |
| 35 | ${AUDIOTOOLBOX_LIBRARY} |
| 36 | ${AUDIOUNIT_LIBRARY} |
achristensen@apple.com | 672f259 | 2016-03-27 01:05:12 +0000 | [diff] [blame] | 37 | ${AVFOUNDATION_LIBRARY} |
commit-queue@webkit.org | cdb41fe | 2015-10-30 04:14:34 +0000 | [diff] [blame] | 38 | ${CARBON_LIBRARY} |
| 39 | ${COCOA_LIBRARY} |
| 40 | ${COREAUDIO_LIBRARY} |
| 41 | ${DISKARBITRATION_LIBRARY} |
| 42 | ${IOKIT_LIBRARY} |
| 43 | ${IOSURFACE_LIBRARY} |
achristensen@apple.com | b9d13d2 | 2017-03-10 03:43:10 +0000 | [diff] [blame] | 44 | ${METAL_LIBRARY} |
commit-queue@webkit.org | cdb41fe | 2015-10-30 04:14:34 +0000 | [diff] [blame] | 45 | ${OPENGL_LIBRARY} |
| 46 | ${QUARTZ_LIBRARY} |
| 47 | ${QUARTZCORE_LIBRARY} |
| 48 | ${SECURITY_LIBRARY} |
| 49 | ${SQLITE3_LIBRARY} |
| 50 | ${SYSTEMCONFIGURATION_LIBRARY} |
| 51 | ${WEBKITSYSTEMINTERFACE_LIBRARY} |
| 52 | ${XML2_LIBRARY} |
| 53 | ${ZLIB_LIBRARIES} |
| 54 | ) |
| 55 | |
achristensen@apple.com | ee72aed | 2016-05-25 19:49:46 +0000 | [diff] [blame] | 56 | add_definitions(-iframework ${APPLICATIONSERVICES_LIBRARY}/Versions/Current/Frameworks) |
achristensen@apple.com | ada757f | 2016-10-15 00:11:24 +0000 | [diff] [blame] | 57 | add_definitions(-iframework ${AVFOUNDATION_LIBRARY}/Versions/Current/Frameworks) |
| 58 | add_definitions(-iframework ${CARBON_LIBRARY}/Versions/Current/Frameworks) |
| 59 | add_definitions(-iframework ${QUARTZ_LIBRARY}/Frameworks) |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 60 | |
achristensen@apple.com | b9fd60a | 2015-09-25 22:04:32 +0000 | [diff] [blame] | 61 | find_library(DATADETECTORSCORE_FRAMEWORK DataDetectorsCore HINTS /System/Library/PrivateFrameworks) |
| 62 | if (NOT DATADETECTORSCORE_FRAMEWORK-NOTFOUND) |
| 63 | list(APPEND WebCore_LIBRARIES ${DATADETECTORSCORE_FRAMEWORK}) |
| 64 | endif () |
| 65 | |
| 66 | find_library(LOOKUP_FRAMEWORK Lookup HINTS /System/Library/PrivateFrameworks) |
| 67 | if (NOT LOOKUP_FRAMEWORK-NOTFOUND) |
| 68 | list(APPEND WebCore_LIBRARIES ${LOOKUP_FRAMEWORK}) |
| 69 | endif () |
| 70 | |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 71 | list(APPEND WebCore_INCLUDE_DIRECTORIES |
annulen@yandex.ru | 622ac9e | 2017-04-21 06:08:13 +0000 | [diff] [blame] | 72 | "${FORWARDING_HEADERS_DIR}/JavaScriptCore" |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 73 | "${THIRDPARTY_DIR}/ANGLE" |
| 74 | "${THIRDPARTY_DIR}/ANGLE/include/KHR" |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 75 | "${WEBCORE_DIR}/accessibility/mac" |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 76 | "${WEBCORE_DIR}/bridge/objc" |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 77 | "${WEBCORE_DIR}/editing/cocoa" |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 78 | "${WEBCORE_DIR}/editing/mac" |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 79 | "${WEBCORE_DIR}/ForwardingHeaders" |
| 80 | "${WEBCORE_DIR}/ForwardingHeaders/bindings" |
| 81 | "${WEBCORE_DIR}/ForwardingHeaders/bytecode" |
utatane.tea@gmail.com | 9d300ae | 2016-10-04 19:34:52 +0000 | [diff] [blame] | 82 | "${WEBCORE_DIR}/ForwardingHeaders/domjit" |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 83 | "${WEBCORE_DIR}/ForwardingHeaders/debugger" |
| 84 | "${WEBCORE_DIR}/ForwardingHeaders/heap" |
| 85 | "${WEBCORE_DIR}/ForwardingHeaders/inspector" |
| 86 | "${WEBCORE_DIR}/ForwardingHeaders/interpreter" |
| 87 | "${WEBCORE_DIR}/ForwardingHeaders/jit" |
| 88 | "${WEBCORE_DIR}/ForwardingHeaders/masm" |
| 89 | "${WEBCORE_DIR}/ForwardingHeaders/parser" |
| 90 | "${WEBCORE_DIR}/ForwardingHeaders/profiler" |
| 91 | "${WEBCORE_DIR}/ForwardingHeaders/replay" |
| 92 | "${WEBCORE_DIR}/ForwardingHeaders/runtime" |
| 93 | "${WEBCORE_DIR}/ForwardingHeaders/yarr" |
achristensen@apple.com | beba0e1 | 2015-04-01 18:36:43 +0000 | [diff] [blame] | 94 | "${WEBCORE_DIR}/icu" |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 95 | "${WEBCORE_DIR}/loader/archive/cf" |
| 96 | "${WEBCORE_DIR}/loader/cf" |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 97 | "${WEBCORE_DIR}/loader/mac" |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 98 | "${WEBCORE_DIR}/page/cocoa" |
| 99 | "${WEBCORE_DIR}/page/mac" |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 100 | "${WEBCORE_DIR}/page/scrolling/mac" |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 101 | "${WEBCORE_DIR}/platform/audio/mac" |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 102 | "${WEBCORE_DIR}/platform/cf" |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 103 | "${WEBCORE_DIR}/platform/cocoa" |
| 104 | "${WEBCORE_DIR}/platform/graphics/avfoundation" |
| 105 | "${WEBCORE_DIR}/platform/graphics/avfoundation/cf" |
| 106 | "${WEBCORE_DIR}/platform/graphics/avfoundation/objc" |
| 107 | "${WEBCORE_DIR}/platform/graphics/ca" |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 108 | "${WEBCORE_DIR}/platform/graphics/ca/cocoa" |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 109 | "${WEBCORE_DIR}/platform/graphics/cocoa" |
| 110 | "${WEBCORE_DIR}/platform/graphics/cg" |
ossy@webkit.org | 232d225 | 2016-03-01 11:17:19 +0000 | [diff] [blame] | 111 | "${WEBCORE_DIR}/platform/graphics/cv" |
dino@apple.com | 445355f | 2017-03-07 22:23:33 +0000 | [diff] [blame] | 112 | "${WEBCORE_DIR}/platform/graphics/gpu" |
achristensen@apple.com | 2c50f38 | 2016-12-23 00:32:25 +0000 | [diff] [blame] | 113 | "${WEBCORE_DIR}/platform/graphics/egl" |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 114 | "${WEBCORE_DIR}/platform/graphics/opentype" |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 115 | "${WEBCORE_DIR}/platform/graphics/opengl" |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 116 | "${WEBCORE_DIR}/platform/graphics/mac" |
achristensen@apple.com | e052cb2 | 2015-03-14 02:57:54 +0000 | [diff] [blame] | 117 | "${WEBCORE_DIR}/platform/mac" |
eric.carlson@apple.com | c4b8e58 | 2015-11-09 21:20:08 +0000 | [diff] [blame] | 118 | "${WEBCORE_DIR}/platform/mediastream/mac" |
achristensen@apple.com | d73fe44 | 2014-08-05 22:28:19 +0000 | [diff] [blame] | 119 | "${WEBCORE_DIR}/platform/network/cocoa" |
| 120 | "${WEBCORE_DIR}/platform/network/cf" |
ossy@webkit.org | 7e354d1 | 2017-03-31 17:08:50 +0000 | [diff] [blame] | 121 | "${WEBCORE_DIR}/platform/network/ios" |
achristensen@apple.com | d73fe44 | 2014-08-05 22:28:19 +0000 | [diff] [blame] | 122 | "${WEBCORE_DIR}/platform/network/mac" |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 123 | "${WEBCORE_DIR}/platform/text/cf" |
| 124 | "${WEBCORE_DIR}/platform/text/mac" |
achristensen@apple.com | e052cb2 | 2015-03-14 02:57:54 +0000 | [diff] [blame] | 125 | "${WEBCORE_DIR}/platform/spi/cf" |
| 126 | "${WEBCORE_DIR}/platform/spi/cg" |
| 127 | "${WEBCORE_DIR}/platform/spi/cocoa" |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 128 | "${WEBCORE_DIR}/platform/spi/ios" |
achristensen@apple.com | e052cb2 | 2015-03-14 02:57:54 +0000 | [diff] [blame] | 129 | "${WEBCORE_DIR}/platform/spi/mac" |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 130 | "${WEBCORE_DIR}/plugins/mac" |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 131 | ) |
| 132 | |
| 133 | list(APPEND WebCore_USER_AGENT_STYLE_SHEETS |
| 134 | ${WEBCORE_DIR}/html/shadow/mac/imageControlsMac.css |
| 135 | ${WEBCORE_DIR}/Modules/plugins/QuickTimePluginReplacement.css |
| 136 | ) |
| 137 | |
achristensen@apple.com | ef2603a | 2015-10-22 22:33:58 +0000 | [diff] [blame] | 138 | set(WebCore_USER_AGENT_SCRIPTS |
| 139 | ${WEBCORE_DIR}/Modules/plugins/QuickTimePluginReplacement.js |
| 140 | ) |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 141 | |
| 142 | #FIXME: Use ios-encodings.txt once we get CMake working for iOS. |
| 143 | add_custom_command( |
| 144 | OUTPUT ${DERIVED_SOURCES_WEBCORE_DIR}/CharsetData.cpp |
| 145 | MAIN_DEPENDENCY ${WEBCORE_DIR}/platform/text/mac/make-charset-table.pl |
| 146 | DEPENDS platform/text/mac/character-sets.txt |
| 147 | DEPENDS platform/text/mac/mac-encodings.txt |
| 148 | COMMAND ${PERL_EXECUTABLE} ${WEBCORE_DIR}/platform/text/mac/make-charset-table.pl ${WEBCORE_DIR}/platform/text/mac/character-sets.txt ${WEBCORE_DIR}/platform/text/mac/mac-encodings.txt kTextEncoding > ${DERIVED_SOURCES_WEBCORE_DIR}/CharsetData.cpp |
| 149 | VERBATIM) |
| 150 | |
achristensen@apple.com | 67ff936 | 2016-03-29 00:19:05 +0000 | [diff] [blame] | 151 | list(APPEND WebCore_DERIVED_SOURCES |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 152 | ${DERIVED_SOURCES_WEBCORE_DIR}/CharsetData.cpp |
mcatanzaro@igalia.com | 79b0548 | 2015-05-19 01:35:57 +0000 | [diff] [blame] | 153 | ) |
achristensen@apple.com | d73fe44 | 2014-08-05 22:28:19 +0000 | [diff] [blame] | 154 | |
mcatanzaro@igalia.com | 79b0548 | 2015-05-19 01:35:57 +0000 | [diff] [blame] | 155 | list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES |
achristensen@apple.com | 88e8b1c | 2015-10-22 21:17:59 +0000 | [diff] [blame] | 156 | "${CMAKE_OSX_SYSROOT}/usr/include/libxslt" |
| 157 | "${CMAKE_OSX_SYSROOT}/usr/include/libxml2" |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 158 | ) |
| 159 | |
| 160 | list(APPEND WebCore_SOURCES |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 161 | Modules/plugins/QuickTimePluginReplacement.mm |
| 162 | Modules/plugins/YouTubePluginReplacement.cpp |
| 163 | |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 164 | accessibility/mac/AXObjectCacheMac.mm |
| 165 | accessibility/mac/AccessibilityObjectMac.mm |
| 166 | accessibility/mac/WebAccessibilityObjectWrapperBase.mm |
| 167 | accessibility/mac/WebAccessibilityObjectWrapperMac.mm |
| 168 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 169 | bindings/js/ScriptControllerMac.mm |
| 170 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 171 | bridge/objc/ObjCRuntimeObject.mm |
achristensen@apple.com | ed94e28 | 2016-08-22 20:13:36 +0000 | [diff] [blame] | 172 | bridge/objc/WebScriptObject.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 173 | bridge/objc/objc_class.mm |
| 174 | bridge/objc/objc_instance.mm |
| 175 | bridge/objc/objc_runtime.mm |
| 176 | bridge/objc/objc_utility.mm |
| 177 | |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 178 | crypto/CommonCryptoUtilities.cpp |
| 179 | crypto/CryptoAlgorithm.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 180 | crypto/CryptoAlgorithmRegistry.cpp |
| 181 | crypto/CryptoKey.cpp |
jiewen_tan@apple.com | e023535 | 2016-10-06 21:32:02 +0000 | [diff] [blame] | 182 | crypto/SubtleCrypto.cpp |
jiewen_tan@apple.com | 99444af | 2016-07-25 20:35:16 +0000 | [diff] [blame] | 183 | crypto/WebKitSubtleCrypto.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 184 | |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 185 | crypto/algorithms/CryptoAlgorithmAES_CBC.cpp |
jiewen_tan@apple.com | 7b3de45 | 2017-02-21 20:04:44 +0000 | [diff] [blame] | 186 | crypto/algorithms/CryptoAlgorithmAES_CFB.cpp |
jiewen_tan@apple.com | fd1f4ea | 2017-04-06 18:56:33 +0000 | [diff] [blame] | 187 | crypto/algorithms/CryptoAlgorithmAES_CTR.cpp |
jiewen_tan@apple.com | cc566de | 2017-03-03 04:24:14 +0000 | [diff] [blame] | 188 | crypto/algorithms/CryptoAlgorithmAES_GCM.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 189 | crypto/algorithms/CryptoAlgorithmAES_KW.cpp |
jiewen_tan@apple.com | 1f0d964 | 2017-03-07 02:56:58 +0000 | [diff] [blame] | 190 | crypto/algorithms/CryptoAlgorithmECDH.cpp |
jiewen_tan@apple.com | e8d5d81 | 2017-04-17 20:07:56 +0000 | [diff] [blame] | 191 | crypto/algorithms/CryptoAlgorithmECDSA.cpp |
jiewen_tan@apple.com | c0b01b6 | 2017-04-15 00:17:09 +0000 | [diff] [blame] | 192 | crypto/algorithms/CryptoAlgorithmHKDF.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 193 | crypto/algorithms/CryptoAlgorithmHMAC.cpp |
jiewen_tan@apple.com | 8630600 | 2017-03-09 22:24:26 +0000 | [diff] [blame] | 194 | crypto/algorithms/CryptoAlgorithmPBKDF2.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 195 | crypto/algorithms/CryptoAlgorithmRSAES_PKCS1_v1_5.cpp |
| 196 | crypto/algorithms/CryptoAlgorithmRSASSA_PKCS1_v1_5.cpp |
| 197 | crypto/algorithms/CryptoAlgorithmRSA_OAEP.cpp |
| 198 | crypto/algorithms/CryptoAlgorithmSHA1.cpp |
| 199 | crypto/algorithms/CryptoAlgorithmSHA224.cpp |
| 200 | crypto/algorithms/CryptoAlgorithmSHA256.cpp |
| 201 | crypto/algorithms/CryptoAlgorithmSHA384.cpp |
| 202 | crypto/algorithms/CryptoAlgorithmSHA512.cpp |
| 203 | |
| 204 | crypto/keys/CryptoKeyAES.cpp |
| 205 | crypto/keys/CryptoKeyDataOctetSequence.cpp |
| 206 | crypto/keys/CryptoKeyDataRSAComponents.cpp |
jiewen_tan@apple.com | 1f0d964 | 2017-03-07 02:56:58 +0000 | [diff] [blame] | 207 | crypto/keys/CryptoKeyEC.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 208 | crypto/keys/CryptoKeyHMAC.cpp |
jiewen_tan@apple.com | df5276a | 2016-11-10 18:36:44 +0000 | [diff] [blame] | 209 | crypto/keys/CryptoKeyRSA.cpp |
jiewen_tan@apple.com | 8630600 | 2017-03-09 22:24:26 +0000 | [diff] [blame] | 210 | crypto/keys/CryptoKeyRaw.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 211 | crypto/keys/CryptoKeySerializationRaw.cpp |
| 212 | |
achristensen@apple.com | e60658a | 2017-04-17 22:46:10 +0000 | [diff] [blame] | 213 | crypto/mac/CommonCryptoDERUtilities.cpp |
ryanhaddad@apple.com | 5a14a01 | 2017-03-03 00:01:22 +0000 | [diff] [blame] | 214 | crypto/mac/CryptoAlgorithmAES_CBCMac.cpp |
jiewen_tan@apple.com | cc566de | 2017-03-03 04:24:14 +0000 | [diff] [blame] | 215 | crypto/mac/CryptoAlgorithmAES_CFBMac.cpp |
ossy@webkit.org | 3e6d4ec | 2017-04-08 13:43:10 +0000 | [diff] [blame] | 216 | crypto/mac/CryptoAlgorithmAES_CTRMac.cpp |
jiewen_tan@apple.com | cc566de | 2017-03-03 04:24:14 +0000 | [diff] [blame] | 217 | crypto/mac/CryptoAlgorithmAES_GCMMac.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 218 | crypto/mac/CryptoAlgorithmAES_KWMac.cpp |
jiewen_tan@apple.com | c9f9f5f | 2017-03-09 04:04:29 +0000 | [diff] [blame] | 219 | crypto/mac/CryptoAlgorithmECDHMac.cpp |
jiewen_tan@apple.com | e8d5d81 | 2017-04-17 20:07:56 +0000 | [diff] [blame] | 220 | crypto/mac/CryptoAlgorithmECDSAMac.cpp |
jiewen_tan@apple.com | c0b01b6 | 2017-04-15 00:17:09 +0000 | [diff] [blame] | 221 | crypto/mac/CryptoAlgorithmHKDFMac.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 222 | crypto/mac/CryptoAlgorithmHMACMac.cpp |
jiewen_tan@apple.com | 8630600 | 2017-03-09 22:24:26 +0000 | [diff] [blame] | 223 | crypto/mac/CryptoAlgorithmPBKDF2Mac.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 224 | crypto/mac/CryptoAlgorithmRSAES_PKCS1_v1_5Mac.cpp |
| 225 | crypto/mac/CryptoAlgorithmRSASSA_PKCS1_v1_5Mac.cpp |
| 226 | crypto/mac/CryptoAlgorithmRSA_OAEPMac.cpp |
| 227 | crypto/mac/CryptoAlgorithmRegistryMac.cpp |
achristensen@apple.com | b9d13d2 | 2017-03-10 03:43:10 +0000 | [diff] [blame] | 228 | crypto/mac/CryptoKeyECMac.cpp |
cdumez@apple.com | fb21e28 | 2017-03-24 18:56:57 +0000 | [diff] [blame] | 229 | crypto/mac/CryptoKeyMac.cpp |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 230 | crypto/mac/CryptoKeyRSAMac.cpp |
| 231 | crypto/mac/SerializedCryptoKeyWrapMac.mm |
| 232 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 233 | dom/DataTransferMac.mm |
commit-queue@webkit.org | b887190 | 2015-09-28 22:08:55 +0000 | [diff] [blame] | 234 | dom/SlotAssignment.cpp |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 235 | |
| 236 | editing/SelectionRectGatherer.cpp |
| 237 | editing/SmartReplaceCF.cpp |
| 238 | |
ossy@webkit.org | 8f0d96c | 2016-01-20 10:49:21 +0000 | [diff] [blame] | 239 | editing/cocoa/DataDetection.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 240 | editing/cocoa/EditorCocoa.mm |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 241 | editing/cocoa/HTMLConverter.mm |
| 242 | |
| 243 | editing/mac/AlternativeTextUIController.mm |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 244 | editing/mac/DictionaryLookup.mm |
| 245 | editing/mac/EditorMac.mm |
| 246 | editing/mac/FrameSelectionMac.mm |
| 247 | editing/mac/TextAlternativeWithRange.mm |
| 248 | editing/mac/TextUndoInsertionMarkupMac.mm |
| 249 | |
aestes@apple.com | 923c3ff | 2017-02-28 01:13:58 +0000 | [diff] [blame] | 250 | fileapi/FileCocoa.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 251 | |
commit-queue@webkit.org | b887190 | 2015-09-28 22:08:55 +0000 | [diff] [blame] | 252 | html/HTMLSlotElement.cpp |
| 253 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 254 | html/shadow/ImageControlsRootElement.cpp |
| 255 | html/shadow/YouTubeEmbedShadowElement.cpp |
| 256 | |
| 257 | html/shadow/mac/ImageControlsButtonElementMac.cpp |
| 258 | html/shadow/mac/ImageControlsRootElementMac.cpp |
| 259 | |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 260 | history/mac/HistoryItemMac.mm |
| 261 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 262 | loader/ResourceLoadInfo.cpp |
| 263 | |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 264 | loader/archive/cf/LegacyWebArchive.cpp |
| 265 | loader/archive/cf/LegacyWebArchiveMac.mm |
| 266 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 267 | loader/cocoa/DiskCacheMonitorCocoa.mm |
| 268 | loader/cocoa/SubresourceLoaderCocoa.mm |
| 269 | |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 270 | loader/cf/ResourceLoaderCFNet.cpp |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 271 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 272 | loader/mac/DocumentLoaderMac.cpp |
| 273 | loader/mac/LoaderNSURLExtras.mm |
| 274 | loader/mac/ResourceLoaderMac.mm |
| 275 | |
| 276 | page/CaptionUserPreferencesMediaAF.cpp |
| 277 | page/PageDebuggable.cpp |
| 278 | |
carlosgc@webkit.org | 32a60dd | 2016-11-10 14:24:26 +0000 | [diff] [blame] | 279 | page/cocoa/MemoryReleaseCocoa.mm |
achristensen@apple.com | 237e543 | 2016-12-08 09:29:28 +0000 | [diff] [blame] | 280 | page/cocoa/PerformanceLoggingCocoa.mm |
akling@apple.com | 43fb352 | 2015-11-01 02:29:47 +0000 | [diff] [blame] | 281 | page/cocoa/ResourceUsageOverlayCocoa.mm |
joepeck@webkit.org | 214fbe5 | 2016-01-27 02:41:55 +0000 | [diff] [blame] | 282 | page/cocoa/ResourceUsageThreadCocoa.mm |
achristensen@apple.com | 1629363 | 2015-11-02 22:55:40 +0000 | [diff] [blame] | 283 | page/cocoa/SettingsCocoa.mm |
achristensen@apple.com | 237e543 | 2016-12-08 09:29:28 +0000 | [diff] [blame] | 284 | page/cocoa/UserAgent.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 285 | |
| 286 | page/mac/ChromeMac.mm |
| 287 | page/mac/DragControllerMac.mm |
| 288 | page/mac/EventHandlerMac.mm |
achristensen@apple.com | f868c1e | 2015-10-29 20:01:20 +0000 | [diff] [blame] | 289 | page/mac/PageMac.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 290 | page/mac/ServicesOverlayController.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 291 | page/mac/TextIndicatorWindow.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 292 | page/mac/UserAgentMac.mm |
achristensen@apple.com | 88e8b1c | 2015-10-22 21:17:59 +0000 | [diff] [blame] | 293 | page/mac/WheelEventDeltaFilterMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 294 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 295 | page/scrolling/AsyncScrollingCoordinator.cpp |
ossy@webkit.org | 3b25dc5 | 2016-11-30 09:41:55 +0000 | [diff] [blame] | 296 | page/scrolling/ScrollingMomentumCalculator.cpp |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 297 | |
| 298 | page/scrolling/cocoa/ScrollingStateNode.mm |
| 299 | |
| 300 | page/scrolling/mac/ScrollingCoordinatorMac.mm |
ossy@webkit.org | 3b25dc5 | 2016-11-30 09:41:55 +0000 | [diff] [blame] | 301 | page/scrolling/mac/ScrollingMomentumCalculatorMac.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 302 | page/scrolling/mac/ScrollingStateFrameScrollingNodeMac.mm |
| 303 | page/scrolling/mac/ScrollingThreadMac.mm |
| 304 | page/scrolling/mac/ScrollingTreeFixedNode.mm |
| 305 | page/scrolling/mac/ScrollingTreeFrameScrollingNodeMac.mm |
| 306 | page/scrolling/mac/ScrollingTreeMac.cpp |
| 307 | page/scrolling/mac/ScrollingTreeStickyNode.mm |
| 308 | |
achristensen@apple.com | add050c | 2017-03-13 20:17:17 +0000 | [diff] [blame] | 309 | platform/CPUMonitor.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 310 | platform/LocalizedStrings.cpp |
ossy@webkit.org | cf918a3 | 2016-03-18 15:42:16 +0000 | [diff] [blame] | 311 | platform/RuntimeApplicationChecks.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 312 | platform/ScrollableArea.cpp |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 313 | |
| 314 | platform/audio/AudioSession.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 315 | |
hs85.jeong@samsung.com | 9e98071 | 2016-06-30 01:03:27 +0000 | [diff] [blame] | 316 | platform/audio/cocoa/MediaSessionManagerCocoa.cpp |
| 317 | |
achristensen@apple.com | b9d13d2 | 2017-03-10 03:43:10 +0000 | [diff] [blame] | 318 | platform/audio/mac/CAAudioStreamDescription.cpp |
| 319 | |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 320 | platform/audio/mac/AudioBusMac.mm |
| 321 | platform/audio/mac/AudioDestinationMac.cpp |
| 322 | platform/audio/mac/AudioFileReaderMac.cpp |
| 323 | platform/audio/mac/AudioHardwareListenerMac.cpp |
| 324 | platform/audio/mac/AudioSessionMac.cpp |
| 325 | platform/audio/mac/CARingBuffer.cpp |
| 326 | platform/audio/mac/FFTFrameMac.cpp |
hs85.jeong@samsung.com | d66cadd | 2016-06-30 02:09:16 +0000 | [diff] [blame] | 327 | platform/audio/mac/MediaSessionManagerMac.mm |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 328 | |
| 329 | platform/cf/CFURLExtras.cpp |
| 330 | platform/cf/CoreMediaSoftLink.cpp |
| 331 | platform/cf/FileSystemCF.cpp |
achristensen@apple.com | 6070865 | 2015-10-23 23:55:41 +0000 | [diff] [blame] | 332 | platform/cf/KeyedDecoderCF.cpp |
| 333 | platform/cf/KeyedEncoderCF.cpp |
carlosgc@webkit.org | f8ef838 | 2015-10-30 13:25:26 +0000 | [diff] [blame] | 334 | platform/cf/MainThreadSharedTimerCF.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 335 | platform/cf/MediaAccessibilitySoftLink.cpp |
| 336 | platform/cf/RunLoopObserver.cpp |
| 337 | platform/cf/SharedBufferCF.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 338 | platform/cf/URLCF.cpp |
| 339 | |
achristensen@apple.com | 9b5e600 | 2015-04-15 22:45:51 +0000 | [diff] [blame] | 340 | platform/cocoa/ContentFilterUnblockHandlerCocoa.mm |
ossy@webkit.org | 40f8c0d | 2016-03-01 11:58:59 +0000 | [diff] [blame] | 341 | platform/cocoa/CoreVideoSoftLink.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 342 | platform/cocoa/DisplaySleepDisablerCocoa.cpp |
aestes@apple.com | d9dbec2 | 2017-02-07 01:39:45 +0000 | [diff] [blame] | 343 | platform/cocoa/FileSystemCocoa.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 344 | platform/cocoa/KeyEventCocoa.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 345 | platform/cocoa/LocalizedStringsCocoa.mm |
ossy@webkit.org | 49b9718 | 2016-03-17 13:17:55 +0000 | [diff] [blame] | 346 | platform/cocoa/MIMETypeRegistryCocoa.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 347 | platform/cocoa/MachSendRight.cpp |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 348 | platform/cocoa/NetworkExtensionContentFilter.mm |
| 349 | platform/cocoa/ParentalControlsContentFilter.mm |
| 350 | platform/cocoa/ScrollController.mm |
achristensen@apple.com | b9fd60a | 2015-09-25 22:04:32 +0000 | [diff] [blame] | 351 | platform/cocoa/ScrollSnapAnimatorState.mm |
achristensen@apple.com | 88e8b1c | 2015-10-22 21:17:59 +0000 | [diff] [blame] | 352 | platform/cocoa/SearchPopupMenuCocoa.mm |
aestes@apple.com | a6c92e6 | 2017-01-04 00:36:32 +0000 | [diff] [blame] | 353 | platform/cocoa/SharedBufferCocoa.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 354 | platform/cocoa/SystemVersion.mm |
| 355 | platform/cocoa/TelephoneNumberDetectorCocoa.cpp |
ossy@webkit.org | 83e48c1 | 2016-05-05 08:25:23 +0000 | [diff] [blame] | 356 | platform/cocoa/ThemeCocoa.mm |
achristensen@apple.com | dfd00c6 | 2016-01-22 05:49:26 +0000 | [diff] [blame] | 357 | platform/cocoa/WebCoreNSErrorExtras.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 358 | |
hs85.jeong@samsung.com | 85d469e | 2016-08-17 02:29:30 +0000 | [diff] [blame] | 359 | platform/gamepad/mac/HIDGamepad.cpp |
| 360 | platform/gamepad/mac/HIDGamepadProvider.cpp |
| 361 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 362 | platform/graphics/DisplayRefreshMonitor.cpp |
| 363 | platform/graphics/DisplayRefreshMonitorManager.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 364 | |
| 365 | platform/graphics/avfoundation/AVTrackPrivateAVFObjCImpl.mm |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 366 | platform/graphics/avfoundation/AudioSourceProviderAVFObjC.mm |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 367 | platform/graphics/avfoundation/CDMPrivateMediaSourceAVFObjC.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 368 | platform/graphics/avfoundation/InbandMetadataTextTrackPrivateAVF.cpp |
| 369 | platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 370 | platform/graphics/avfoundation/MediaPlaybackTargetMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 371 | platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 372 | platform/graphics/avfoundation/MediaSelectionGroupAVFObjC.mm |
| 373 | platform/graphics/avfoundation/MediaTimeAVFoundation.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 374 | |
achristensen@apple.com | 1eb7b1e | 2016-06-10 06:48:16 +0000 | [diff] [blame] | 375 | platform/graphics/avfoundation/objc/AVFoundationMIMETypeCache.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 376 | platform/graphics/avfoundation/objc/AudioTrackPrivateAVFObjC.mm |
| 377 | platform/graphics/avfoundation/objc/AudioTrackPrivateMediaSourceAVFObjC.cpp |
achristensen@apple.com | fabead8 | 2016-02-02 01:51:14 +0000 | [diff] [blame] | 378 | platform/graphics/avfoundation/objc/CDMSessionAVContentKeySession.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 379 | platform/graphics/avfoundation/objc/CDMSessionAVFoundationObjC.mm |
achristensen@apple.com | fabead8 | 2016-02-02 01:51:14 +0000 | [diff] [blame] | 380 | platform/graphics/avfoundation/objc/CDMSessionAVStreamSession.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 381 | platform/graphics/avfoundation/objc/CDMSessionMediaSourceAVFObjC.mm |
| 382 | platform/graphics/avfoundation/objc/InbandTextTrackPrivateAVFObjC.mm |
| 383 | platform/graphics/avfoundation/objc/InbandTextTrackPrivateLegacyAVFObjC.mm |
| 384 | platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm |
| 385 | platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.mm |
achristensen@apple.com | 46e5057 | 2016-08-02 21:17:37 +0000 | [diff] [blame] | 386 | platform/graphics/avfoundation/objc/MediaSampleAVFObjC.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 387 | platform/graphics/avfoundation/objc/MediaSourcePrivateAVFObjC.mm |
| 388 | platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm |
| 389 | platform/graphics/avfoundation/objc/VideoTrackPrivateAVFObjC.cpp |
| 390 | platform/graphics/avfoundation/objc/VideoTrackPrivateMediaSourceAVFObjC.mm |
| 391 | platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm |
| 392 | |
| 393 | platform/graphics/ca/GraphicsLayerCA.cpp |
| 394 | platform/graphics/ca/LayerFlushScheduler.cpp |
| 395 | platform/graphics/ca/LayerPool.cpp |
achristensen@apple.com | 6070865 | 2015-10-23 23:55:41 +0000 | [diff] [blame] | 396 | platform/graphics/ca/PlatformCAAnimation.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 397 | platform/graphics/ca/PlatformCALayer.cpp |
| 398 | platform/graphics/ca/TileController.cpp |
| 399 | platform/graphics/ca/TileCoverageMap.cpp |
| 400 | platform/graphics/ca/TileGrid.cpp |
| 401 | platform/graphics/ca/TransformationMatrixCA.cpp |
| 402 | |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 403 | platform/graphics/ca/cocoa/LayerFlushSchedulerMac.cpp |
| 404 | platform/graphics/ca/cocoa/PlatformCAAnimationCocoa.mm |
| 405 | platform/graphics/ca/cocoa/PlatformCAFiltersCocoa.mm |
| 406 | platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm |
| 407 | platform/graphics/ca/cocoa/WebSystemBackdropLayer.mm |
| 408 | platform/graphics/ca/cocoa/WebTiledBackingLayer.mm |
| 409 | |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 410 | platform/graphics/cg/ColorCG.cpp |
| 411 | platform/graphics/cg/FloatPointCG.cpp |
| 412 | platform/graphics/cg/FloatRectCG.cpp |
| 413 | platform/graphics/cg/FloatSizeCG.cpp |
| 414 | platform/graphics/cg/GradientCG.cpp |
| 415 | platform/graphics/cg/GraphicsContext3DCG.cpp |
| 416 | platform/graphics/cg/GraphicsContextCG.cpp |
| 417 | platform/graphics/cg/IOSurfacePool.cpp |
| 418 | platform/graphics/cg/ImageBufferCG.cpp |
| 419 | platform/graphics/cg/ImageBufferDataCG.cpp |
| 420 | platform/graphics/cg/ImageCG.cpp |
commit-queue@webkit.org | d7a5b56 | 2016-03-30 19:10:18 +0000 | [diff] [blame] | 421 | platform/graphics/cg/ImageDecoderCG.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 422 | platform/graphics/cg/ImageSourceCGMac.mm |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 423 | platform/graphics/cg/IntPointCG.cpp |
| 424 | platform/graphics/cg/IntRectCG.cpp |
| 425 | platform/graphics/cg/IntSizeCG.cpp |
commit-queue@webkit.org | 8865c24 | 2016-09-09 01:06:47 +0000 | [diff] [blame] | 426 | platform/graphics/cg/NativeImageCG.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 427 | platform/graphics/cg/PDFDocumentImage.cpp |
| 428 | platform/graphics/cg/PathCG.cpp |
| 429 | platform/graphics/cg/PatternCG.cpp |
| 430 | platform/graphics/cg/SubimageCacheWithTimer.cpp |
| 431 | platform/graphics/cg/TransformationMatrixCG.cpp |
achristensen@apple.com | b1ad5b5 | 2017-04-26 19:01:58 +0000 | [diff] [blame] | 432 | platform/graphics/cg/UTIRegistry.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 433 | |
dino@apple.com | 3655d52 | 2017-03-10 00:00:41 +0000 | [diff] [blame] | 434 | platform/graphics/cocoa/GPUBufferMetal.mm |
achristensen@apple.com | add050c | 2017-03-13 20:17:17 +0000 | [diff] [blame] | 435 | platform/graphics/cocoa/GPUCommandBufferMetal.mm |
| 436 | platform/graphics/cocoa/GPUCommandQueueMetal.mm |
commit-queue@webkit.org | c9ae1e2 | 2017-04-08 00:21:26 +0000 | [diff] [blame] | 437 | platform/graphics/cocoa/GPUComputeCommandEncoderMetal.mm |
| 438 | platform/graphics/cocoa/GPUComputePipelineStateMetal.mm |
achristensen@apple.com | add050c | 2017-03-13 20:17:17 +0000 | [diff] [blame] | 439 | platform/graphics/cocoa/GPUDepthStencilDescriptorMetal.mm |
| 440 | platform/graphics/cocoa/GPUDepthStencilStateMetal.mm |
dino@apple.com | 445355f | 2017-03-07 22:23:33 +0000 | [diff] [blame] | 441 | platform/graphics/cocoa/GPUDeviceMetal.mm |
achristensen@apple.com | add050c | 2017-03-13 20:17:17 +0000 | [diff] [blame] | 442 | platform/graphics/cocoa/GPUDrawableMetal.mm |
dino@apple.com | 0b0052c | 2017-03-09 19:02:11 +0000 | [diff] [blame] | 443 | platform/graphics/cocoa/GPUFunctionMetal.mm |
| 444 | platform/graphics/cocoa/GPULibraryMetal.mm |
achristensen@apple.com | add050c | 2017-03-13 20:17:17 +0000 | [diff] [blame] | 445 | platform/graphics/cocoa/GPURenderCommandEncoderMetal.mm |
| 446 | platform/graphics/cocoa/GPURenderPassAttachmentDescriptorMetal.mm |
| 447 | platform/graphics/cocoa/GPURenderPassColorAttachmentDescriptorMetal.mm |
| 448 | platform/graphics/cocoa/GPURenderPassDepthAttachmentDescriptorMetal.mm |
| 449 | platform/graphics/cocoa/GPURenderPassDescriptorMetal.mm |
| 450 | platform/graphics/cocoa/GPURenderPipelineColorAttachmentDescriptorMetal.mm |
| 451 | platform/graphics/cocoa/GPURenderPipelineDescriptorMetal.mm |
| 452 | platform/graphics/cocoa/GPURenderPipelineStateMetal.mm |
dino@apple.com | dceaa7a | 2017-03-10 22:56:06 +0000 | [diff] [blame] | 453 | platform/graphics/cocoa/GPUTextureDescriptorMetal.mm |
| 454 | platform/graphics/cocoa/GPUTextureMetal.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 455 | platform/graphics/cocoa/FontCacheCoreText.cpp |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 456 | platform/graphics/cocoa/FontCascadeCocoa.mm |
| 457 | platform/graphics/cocoa/FontCocoa.mm |
| 458 | platform/graphics/cocoa/FontPlatformDataCocoa.mm |
| 459 | platform/graphics/cocoa/IOSurface.mm |
| 460 | platform/graphics/cocoa/IOSurfacePoolCocoa.mm |
| 461 | platform/graphics/cocoa/WebActionDisablingCALayerDelegate.mm |
| 462 | platform/graphics/cocoa/WebCoreCALayerExtras.mm |
achristensen@apple.com | b9d13d2 | 2017-03-10 03:43:10 +0000 | [diff] [blame] | 463 | platform/graphics/cocoa/WebGPULayer.mm |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 464 | |
ossy@webkit.org | 40f8c0d | 2016-03-01 11:58:59 +0000 | [diff] [blame] | 465 | platform/graphics/cv/PixelBufferConformerCV.cpp |
| 466 | platform/graphics/cv/TextureCacheCV.mm |
| 467 | platform/graphics/cv/VideoTextureCopierCV.cpp |
| 468 | |
achristensen@apple.com | add050c | 2017-03-13 20:17:17 +0000 | [diff] [blame] | 469 | platform/graphics/gpu/Texture.cpp |
| 470 | platform/graphics/gpu/TilingData.cpp |
dino@apple.com | 445355f | 2017-03-07 22:23:33 +0000 | [diff] [blame] | 471 | |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 472 | platform/graphics/mac/ColorMac.mm |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 473 | platform/graphics/mac/ComplexTextControllerCoreText.mm |
| 474 | platform/graphics/mac/DisplayRefreshMonitorMac.cpp |
| 475 | platform/graphics/mac/FloatPointMac.mm |
| 476 | platform/graphics/mac/FloatRectMac.mm |
| 477 | platform/graphics/mac/FloatSizeMac.mm |
| 478 | platform/graphics/mac/FontCacheMac.mm |
| 479 | platform/graphics/mac/FontCustomPlatformData.cpp |
| 480 | platform/graphics/mac/GlyphPageMac.cpp |
| 481 | platform/graphics/mac/GraphicsContext3DMac.mm |
| 482 | platform/graphics/mac/GraphicsContextMac.mm |
| 483 | platform/graphics/mac/IconMac.mm |
| 484 | platform/graphics/mac/ImageMac.mm |
| 485 | platform/graphics/mac/IntPointMac.mm |
| 486 | platform/graphics/mac/IntRectMac.mm |
| 487 | platform/graphics/mac/IntSizeMac.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 488 | platform/graphics/mac/MediaPlayerPrivateQTKit.mm |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 489 | platform/graphics/mac/MediaTimeQTKit.mm |
| 490 | platform/graphics/mac/PDFDocumentImageMac.mm |
| 491 | platform/graphics/mac/SimpleFontDataCoreText.cpp |
| 492 | platform/graphics/mac/WebGLLayer.mm |
| 493 | platform/graphics/mac/WebLayer.mm |
| 494 | |
| 495 | platform/graphics/opengl/Extensions3DOpenGL.cpp |
| 496 | platform/graphics/opengl/Extensions3DOpenGLCommon.cpp |
| 497 | platform/graphics/opengl/GraphicsContext3DOpenGL.cpp |
| 498 | platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp |
| 499 | platform/graphics/opengl/TemporaryOpenGLSetting.cpp |
| 500 | |
fred.wang@free.fr | 953065a | 2015-11-04 08:50:31 +0000 | [diff] [blame] | 501 | platform/graphics/opentype/OpenTypeCG.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 502 | platform/graphics/opentype/OpenTypeMathData.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 503 | |
hs85.jeong@samsung.com | 85d469e | 2016-08-17 02:29:30 +0000 | [diff] [blame] | 504 | platform/mac/BlacklistUpdater.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 505 | platform/mac/CursorMac.mm |
| 506 | platform/mac/DragDataMac.mm |
| 507 | platform/mac/DragImageMac.mm |
| 508 | platform/mac/EventLoopMac.mm |
| 509 | platform/mac/FileSystemMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 510 | platform/mac/KeyEventMac.mm |
| 511 | platform/mac/KillRingMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 512 | platform/mac/LocalCurrentGraphicsContext.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 513 | platform/mac/LoggingMac.mm |
hs85.jeong@samsung.com | d66cadd | 2016-06-30 02:09:16 +0000 | [diff] [blame] | 514 | platform/mac/MediaRemoteSoftLink.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 515 | platform/mac/NSScrollerImpDetails.mm |
| 516 | platform/mac/PasteboardMac.mm |
achristensen@apple.com | abd927d | 2017-02-21 22:14:50 +0000 | [diff] [blame] | 517 | platform/mac/PasteboardWriter.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 518 | platform/mac/PlatformClockCA.cpp |
| 519 | platform/mac/PlatformClockCM.mm |
| 520 | platform/mac/PlatformEventFactoryMac.mm |
| 521 | platform/mac/PlatformPasteboardMac.mm |
| 522 | platform/mac/PlatformScreenMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 523 | platform/mac/PlatformSpeechSynthesizerMac.mm |
hs85.jeong@samsung.com | 85d469e | 2016-08-17 02:29:30 +0000 | [diff] [blame] | 524 | platform/mac/PluginBlacklist.mm |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 525 | platform/mac/PowerObserverMac.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 526 | platform/mac/PublicSuffixMac.mm |
hs85.jeong@samsung.com | d66cadd | 2016-06-30 02:09:16 +0000 | [diff] [blame] | 527 | platform/mac/RemoteCommandListenerMac.mm |
hs85.jeong@samsung.com | 057c947 | 2016-08-17 02:42:51 +0000 | [diff] [blame] | 528 | platform/mac/SSLKeyGeneratorMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 529 | platform/mac/ScrollAnimatorMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 530 | platform/mac/ScrollViewMac.mm |
| 531 | platform/mac/ScrollbarThemeMac.mm |
| 532 | platform/mac/SerializedPlatformRepresentationMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 533 | platform/mac/SoundMac.mm |
aakash_jain@apple.com | 5fa872b | 2017-03-02 23:56:03 +0000 | [diff] [blame] | 534 | platform/mac/StringUtilities.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 535 | platform/mac/SuddenTermination.mm |
| 536 | platform/mac/SystemSleepListenerMac.mm |
| 537 | platform/mac/ThemeMac.mm |
| 538 | platform/mac/ThreadCheck.mm |
| 539 | platform/mac/URLMac.mm |
| 540 | platform/mac/UserActivityMac.mm |
ossy@webkit.org | 80f8aa6 | 2016-11-09 17:36:21 +0000 | [diff] [blame] | 541 | platform/mac/ValidationBubbleMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 542 | platform/mac/WebCoreFullScreenPlaceholderView.mm |
| 543 | platform/mac/WebCoreFullScreenWarningView.mm |
| 544 | platform/mac/WebCoreFullScreenWindow.mm |
| 545 | platform/mac/WebCoreNSStringExtras.mm |
| 546 | platform/mac/WebCoreNSURLExtras.mm |
| 547 | platform/mac/WebCoreObjCExtras.mm |
| 548 | platform/mac/WebCoreSystemInterface.mm |
hs85.jeong@samsung.com | 85d469e | 2016-08-17 02:29:30 +0000 | [diff] [blame] | 549 | platform/mac/WebGLBlacklist.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 550 | platform/mac/WebNSAttributedStringExtras.mm |
| 551 | platform/mac/WebVideoFullscreenController.mm |
| 552 | platform/mac/WebVideoFullscreenHUDWindowController.mm |
| 553 | platform/mac/WebWindowAnimation.mm |
| 554 | platform/mac/WidgetMac.mm |
| 555 | |
eric.carlson@apple.com | c4b8e58 | 2015-11-09 21:20:08 +0000 | [diff] [blame] | 556 | platform/mediastream/mac/MockRealtimeVideoSourceMac.mm |
| 557 | |
achristensen@apple.com | d73fe44 | 2014-08-05 22:28:19 +0000 | [diff] [blame] | 558 | platform/network/cf/AuthenticationCF.cpp |
| 559 | platform/network/cf/CookieJarCFNet.cpp |
| 560 | platform/network/cf/CookieStorageCFNet.cpp |
| 561 | platform/network/cf/CredentialStorageCFNet.cpp |
| 562 | platform/network/cf/DNSCFNet.cpp |
| 563 | platform/network/cf/FormDataStreamCFNet.cpp |
| 564 | platform/network/cf/LoaderRunLoopCF.cpp |
| 565 | platform/network/cf/NetworkStorageSessionCFNet.cpp |
achristensen@apple.com | d73fe44 | 2014-08-05 22:28:19 +0000 | [diff] [blame] | 566 | platform/network/cf/ProxyServerCFNet.cpp |
| 567 | platform/network/cf/ResourceErrorCF.cpp |
achristensen@apple.com | d73fe44 | 2014-08-05 22:28:19 +0000 | [diff] [blame] | 568 | platform/network/cf/ResourceRequestCFNet.cpp |
| 569 | platform/network/cf/ResourceResponseCFNet.cpp |
achristensen@apple.com | 0662b19 | 2016-08-15 21:23:32 +0000 | [diff] [blame] | 570 | platform/network/cf/SocketStreamHandleImplCFNet.cpp |
achristensen@apple.com | d73fe44 | 2014-08-05 22:28:19 +0000 | [diff] [blame] | 571 | platform/network/cf/SynchronousLoaderClientCFNet.cpp |
| 572 | platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.cpp |
| 573 | |
achristensen@apple.com | add050c | 2017-03-13 20:17:17 +0000 | [diff] [blame] | 574 | platform/network/cocoa/CookieCocoa.mm |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 575 | platform/network/cocoa/CredentialCocoa.mm |
joepeck@webkit.org | ff39b7b | 2017-02-25 05:48:51 +0000 | [diff] [blame] | 576 | platform/network/cocoa/NetworkLoadMetrics.mm |
achristensen@apple.com | add050c | 2017-03-13 20:17:17 +0000 | [diff] [blame] | 577 | platform/network/cocoa/NetworkStorageSessionCocoa.mm |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 578 | platform/network/cocoa/ProtectionSpaceCocoa.mm |
| 579 | platform/network/cocoa/ResourceRequestCocoa.mm |
aestes@apple.com | 23df146 | 2015-12-22 23:52:00 +0000 | [diff] [blame] | 580 | platform/network/cocoa/ResourceResponseCocoa.mm |
achristensen@apple.com | c64cc39 | 2016-02-15 20:49:23 +0000 | [diff] [blame] | 581 | platform/network/cocoa/WebCoreNSURLSession.mm |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 582 | |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 583 | platform/network/mac/AuthenticationMac.mm |
| 584 | platform/network/mac/BlobDataFileReferenceMac.mm |
| 585 | platform/network/mac/CertificateInfoMac.mm |
| 586 | platform/network/mac/CookieJarMac.mm |
| 587 | platform/network/mac/CookieStorageMac.mm |
| 588 | platform/network/mac/CredentialStorageMac.mm |
| 589 | platform/network/mac/FormDataStreamMac.mm |
| 590 | platform/network/mac/NetworkStateNotifierMac.cpp |
| 591 | platform/network/mac/ResourceErrorMac.mm |
| 592 | platform/network/mac/ResourceHandleMac.mm |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 593 | platform/network/mac/SynchronousLoaderClient.mm |
| 594 | platform/network/mac/UTIUtilities.mm |
| 595 | platform/network/mac/WebCoreResourceHandleAsDelegate.mm |
| 596 | platform/network/mac/WebCoreResourceHandleAsOperationQueueDelegate.mm |
| 597 | platform/network/mac/WebCoreURLResponse.mm |
| 598 | |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 599 | platform/posix/FileSystemPOSIX.cpp |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 600 | |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 601 | platform/text/cf/HyphenationCF.cpp |
| 602 | |
| 603 | platform/text/mac/LocaleMac.mm |
| 604 | platform/text/mac/TextBoundaries.mm |
achristensen@apple.com | 92a456f | 2014-08-08 18:13:54 +0000 | [diff] [blame] | 605 | platform/text/mac/TextCodecMac.cpp |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 606 | |
| 607 | rendering/RenderThemeMac.mm |
| 608 | rendering/TextAutoSizing.cpp |
achristensen@apple.com | 85f6ab5 | 2014-08-05 00:30:15 +0000 | [diff] [blame] | 609 | ) |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 610 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 611 | # FIXME: We do not need everything from all of these directories. |
| 612 | # Move some to WebCore_FORWARDING_HEADERS_FILES once people start actually maintaining this. |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 613 | set(WebCore_FORWARDING_HEADERS_DIRECTORIES |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 614 | accessibility |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 615 | bridge |
| 616 | contentextensions |
| 617 | crypto |
| 618 | css |
| 619 | dom |
| 620 | editing |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 621 | fileapi |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 622 | history |
| 623 | html |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 624 | inspector |
| 625 | loader |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 626 | page |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 627 | platform |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 628 | plugins |
| 629 | rendering |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 630 | replay |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 631 | storage |
| 632 | style |
| 633 | svg |
achristensen@apple.com | e79a645 | 2016-07-08 00:12:39 +0000 | [diff] [blame] | 634 | workers |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 635 | |
achristensen@apple.com | 6cb7ae1 | 2016-06-28 06:38:32 +0000 | [diff] [blame] | 636 | Modules/applepay |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 637 | Modules/geolocation |
| 638 | Modules/indexeddb |
achristensen@apple.com | e7b30d8 | 2016-10-28 06:00:29 +0000 | [diff] [blame] | 639 | Modules/mediastream |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 640 | Modules/notifications |
| 641 | Modules/webdatabase |
achristensen@apple.com | 9ab1813 | 2016-07-07 23:58:38 +0000 | [diff] [blame] | 642 | Modules/websockets |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 643 | |
achristensen@apple.com | 9459fc7 | 2016-03-25 03:59:30 +0000 | [diff] [blame] | 644 | Modules/indexeddb/client |
achristensen@apple.com | e691ae3 | 2016-02-17 01:14:13 +0000 | [diff] [blame] | 645 | Modules/indexeddb/shared |
ossy@webkit.org | 530923e | 2016-02-23 15:51:19 +0000 | [diff] [blame] | 646 | Modules/indexeddb/server |
achristensen@apple.com | b9fd60a | 2015-09-25 22:04:32 +0000 | [diff] [blame] | 647 | |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 648 | bindings/js |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 649 | |
achristensen@apple.com | ed94e28 | 2016-08-22 20:13:36 +0000 | [diff] [blame] | 650 | bridge/objc |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 651 | bridge/jsc |
| 652 | |
ossy@webkit.org | 530764d | 2016-08-25 15:58:06 +0000 | [diff] [blame] | 653 | css/parser |
| 654 | |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 655 | editing/cocoa |
| 656 | editing/mac |
| 657 | |
dbates@webkit.org | 334c73a | 2016-12-09 18:27:50 +0000 | [diff] [blame] | 658 | html/canvas |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 659 | html/forms |
| 660 | html/parser |
| 661 | html/shadow |
| 662 | |
| 663 | loader/appcache |
| 664 | loader/archive |
| 665 | loader/cache |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 666 | loader/cocoa |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 667 | |
| 668 | loader/archive/cf |
| 669 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 670 | page/animation |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 671 | page/cocoa |
achristensen@apple.com | ada757f | 2016-10-15 00:11:24 +0000 | [diff] [blame] | 672 | page/csp |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 673 | page/mac |
| 674 | page/scrolling |
| 675 | |
achristensen@apple.com | 6070865 | 2015-10-23 23:55:41 +0000 | [diff] [blame] | 676 | page/scrolling/mac |
| 677 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 678 | platform/animation |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 679 | platform/audio |
achristensen@apple.com | 88e8b1c | 2015-10-22 21:17:59 +0000 | [diff] [blame] | 680 | platform/cf |
| 681 | platform/cocoa |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 682 | platform/graphics |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 683 | platform/mac |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 684 | platform/mediastream |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 685 | platform/mock |
| 686 | platform/network |
| 687 | platform/sql |
| 688 | platform/text |
| 689 | |
hs85.jeong@samsung.com | 9e98071 | 2016-06-30 01:03:27 +0000 | [diff] [blame] | 690 | platform/audio/cocoa |
| 691 | |
achristensen@apple.com | 9222e00 | 2016-09-01 19:48:36 +0000 | [diff] [blame] | 692 | platform/gamepad/cocoa |
hs85.jeong@samsung.com | 85d469e | 2016-08-17 02:29:30 +0000 | [diff] [blame] | 693 | platform/gamepad/mac |
| 694 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 695 | platform/graphics/ca |
achristensen@apple.com | 88e8b1c | 2015-10-22 21:17:59 +0000 | [diff] [blame] | 696 | platform/graphics/cocoa |
commit-queue@webkit.org | dfacf45 | 2015-03-26 22:53:46 +0000 | [diff] [blame] | 697 | platform/graphics/cg |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 698 | platform/graphics/filters |
commit-queue@webkit.org | 9d3b378 | 2016-04-01 16:45:58 +0000 | [diff] [blame] | 699 | platform/graphics/opentype |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 700 | platform/graphics/mac |
| 701 | platform/graphics/transforms |
| 702 | |
achristensen@apple.com | 6070865 | 2015-10-23 23:55:41 +0000 | [diff] [blame] | 703 | platform/graphics/ca/cocoa |
| 704 | |
ossy@webkit.org | 3b8a98c | 2017-01-26 10:52:20 +0000 | [diff] [blame] | 705 | platform/mediastream/libwebrtc |
| 706 | |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 707 | platform/network/cf |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 708 | platform/network/cocoa |
| 709 | platform/network/mac |
| 710 | |
| 711 | platform/spi/cf |
| 712 | platform/spi/cg |
| 713 | platform/spi/cocoa |
| 714 | platform/spi/mac |
| 715 | |
| 716 | rendering/line |
| 717 | rendering/style |
| 718 | |
| 719 | svg/graphics |
| 720 | svg/properties |
achristensen@apple.com | ed94e28 | 2016-08-22 20:13:36 +0000 | [diff] [blame] | 721 | |
| 722 | xml |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 723 | ) |
| 724 | |
| 725 | set(WebCore_FORWARDING_HEADERS_FILES |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 726 | Modules/webdatabase/DatabaseDetails.h |
| 727 | |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 728 | bridge/IdentifierRep.h |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 729 | bridge/npruntime_impl.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 730 | bridge/npruntime_internal.h |
| 731 | |
| 732 | contentextensions/CompiledContentExtension.h |
| 733 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 734 | editing/EditAction.h |
| 735 | editing/EditingBehaviorTypes.h |
| 736 | editing/EditingBoundary.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 737 | editing/FindOptions.h |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 738 | editing/FrameSelection.h |
| 739 | editing/TextAffinity.h |
| 740 | |
| 741 | editing/mac/TextAlternativeWithRange.h |
| 742 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 743 | history/HistoryItem.h |
| 744 | history/PageCache.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 745 | |
| 746 | html/HTMLMediaElement.h |
| 747 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 748 | loader/appcache/ApplicationCacheStorage.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 749 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 750 | loader/icon/IconDatabase.h |
| 751 | loader/icon/IconDatabaseBase.h |
| 752 | loader/icon/IconDatabaseClient.h |
| 753 | |
| 754 | loader/mac/LoaderNSURLExtras.h |
| 755 | |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 756 | platform/DisplaySleepDisabler.h |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 757 | platform/PlatformExportMacros.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 758 | |
| 759 | platform/audio/AudioHardwareListener.h |
| 760 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 761 | platform/cf/RunLoopObserver.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 762 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 763 | platform/cocoa/MachSendRight.h |
ddkilzer@apple.com | 06fc5a7 | 2016-06-16 03:22:07 +0000 | [diff] [blame] | 764 | platform/cocoa/SoftLinking.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 765 | |
| 766 | platform/graphics/cocoa/IOSurface.h |
| 767 | |
| 768 | platform/graphics/transforms/AffineTransform.h |
| 769 | |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 770 | platform/mac/WebCoreSystemInterface.h |
| 771 | |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 772 | platform/network/cf/CertificateInfo.h |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 773 | platform/network/cf/ResourceResponse.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 774 | |
ossy@webkit.org | 3c59b16 | 2015-06-09 09:46:19 +0000 | [diff] [blame] | 775 | platform/network/mac/AuthenticationMac.h |
| 776 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 777 | platform/sql/SQLiteDatabase.h |
achristensen@apple.com | 7542286 | 2015-03-17 00:29:55 +0000 | [diff] [blame] | 778 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 779 | rendering/style/RenderStyleConstants.h |
| 780 | ) |
| 781 | |
achristensen@apple.com | b9fd60a | 2015-09-25 22:04:32 +0000 | [diff] [blame] | 782 | list(APPEND WebCore_IDL_FILES |
| 783 | Modules/plugins/QuickTimePluginReplacement.idl |
| 784 | ) |
| 785 | |
achristensen@apple.com | 243da31 | 2014-08-13 22:53:12 +0000 | [diff] [blame] | 786 | WEBKIT_CREATE_FORWARDING_HEADERS(WebCore DIRECTORIES ${WebCore_FORWARDING_HEADERS_DIRECTORIES} FILES ${WebCore_FORWARDING_HEADERS_FILES}) |
| 787 | |
achristensen@apple.com | 2f28dc7 | 2015-03-20 18:18:41 +0000 | [diff] [blame] | 788 | set(FEATURE_DEFINES_OBJECTIVE_C "LANGUAGE_OBJECTIVE_C=1 ${FEATURE_DEFINES_WITH_SPACE_SEPARATOR}") |
| 789 | set(ADDITIONAL_BINDINGS_DEPENDENCIES |
| 790 | ${WINDOW_CONSTRUCTORS_FILE} |
| 791 | ${WORKERGLOBALSCOPE_CONSTRUCTORS_FILE} |
| 792 | ${DEDICATEDWORKERGLOBALSCOPE_CONSTRUCTORS_FILE} |
| 793 | ) |
achristensen@apple.com | 6fbde37 | 2015-09-14 21:22:46 +0000 | [diff] [blame] | 794 | |
commit-queue@webkit.org | 9d3b378 | 2016-04-01 16:45:58 +0000 | [diff] [blame] | 795 | set(WebCoreTestSupport_LIBRARY_TYPE SHARED) |
achristensen@apple.com | 69c4774 | 2016-04-06 05:31:07 +0000 | [diff] [blame] | 796 | list(APPEND WebCoreTestSupport_LIBRARIES PRIVATE WebCore) |
commit-queue@webkit.org | 9d3b378 | 2016-04-01 16:45:58 +0000 | [diff] [blame] | 797 | list(APPEND WebCoreTestSupport_SOURCES |
| 798 | bindings/js/JSMockContentFilterSettingsCustom.cpp |
| 799 | |
| 800 | testing/Internals.mm |
| 801 | testing/MockContentFilter.cpp |
| 802 | testing/MockContentFilterSettings.cpp |
aestes@apple.com | 502d724 | 2017-03-22 22:25:09 +0000 | [diff] [blame] | 803 | testing/MockPreviewLoaderClient.cpp |
aestes@apple.com | 26ebf0c | 2017-01-07 03:49:04 +0000 | [diff] [blame] | 804 | |
| 805 | testing/cocoa/WebArchiveDumpSupport.mm |
achristensen@apple.com | 69c4774 | 2016-04-06 05:31:07 +0000 | [diff] [blame] | 806 | ) |
achristensen@apple.com | 6c8177d | 2016-04-09 00:36:06 +0000 | [diff] [blame] | 807 | |
| 808 | set(CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS} "-compatibility_version 1 -current_version ${WEBKIT_MAC_VERSION}") |