Changeset 181601 in webkit
- Timestamp:
- Mar 16, 2015, 5:29:55 PM (11 years ago)
- Location:
- trunk/Source
- Files:
-
- 8 edited
-
JavaScriptCore/CMakeLists.txt (modified) (3 diffs)
-
JavaScriptCore/ChangeLog (modified) (1 diff)
-
WebCore/CMakeLists.txt (modified) (3 diffs)
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/PlatformMac.cmake (modified) (3 diffs)
-
WebCore/platform/mac/PasteboardMac.mm (modified) (1 diff)
-
WebKit2/ChangeLog (modified) (1 diff)
-
WebKit2/PlatformMac.cmake (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/CMakeLists.txt
r181458 r181601 16 16 "${JAVASCRIPTCORE_DIR}/inspector" 17 17 "${JAVASCRIPTCORE_DIR}/inspector/agents" 18 "${JAVASCRIPTCORE_DIR}/inspector/augmentable" 18 19 "${JAVASCRIPTCORE_DIR}/inspector/remote" 19 20 "${JAVASCRIPTCORE_DIR}/interpreter" … … 903 904 inspector 904 905 inspector/agents 906 inspector/augmentable 905 907 inspector/remote 906 908 interpreter … … 965 967 assembler/MacroAssemblerCodeRef.h 966 968 969 inspector/augmentable/AugmentableInspectorController.h 970 967 971 inspector/remote/RemoteInspector.h 968 972 inspector/remote/RemoteInspectorConstants.h -
trunk/Source/JavaScriptCore/ChangeLog
r181570 r181601 1 2015-03-16 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=142747 5 6 Reviewed by Chris Dumez. 7 8 * CMakeLists.txt: 9 Include AugmentableInspectorController.h in CMake build. 10 1 11 2015-03-16 Csaba Osztrogonác <ossy@webkit.org> 2 12 -
trunk/Source/WebCore/CMakeLists.txt
r181571 r181601 81 81 "${WEBCORE_DIR}/platform/mediastream" 82 82 "${WEBCORE_DIR}/platform/mock" 83 "${WEBCORE_DIR}/platform/mock/mediasource" 83 84 "${WEBCORE_DIR}/platform/network" 84 85 "${WEBCORE_DIR}/platform/sql" … … 575 576 html/canvas/WebGLVertexArrayObject.idl 576 577 html/canvas/WebGLVertexArrayObjectOES.idl 578 579 html/track/AudioTrack.idl 580 html/track/AudioTrackList.idl 581 html/track/DataCue.idl 582 html/track/TextTrack.idl 583 html/track/TextTrackCue.idl 584 html/track/TextTrackCueList.idl 585 html/track/TextTrackList.idl 586 html/track/TrackEvent.idl 587 html/track/VTTCue.idl 588 html/track/VTTRegion.idl 589 html/track/VTTRegionList.idl 590 html/track/VideoTrack.idl 591 html/track/VideoTrackList.idl 577 592 578 593 inspector/CommandLineAPIHost.idl … … 3143 3158 testing/MallocStatistics.idl 3144 3159 testing/MemoryInfo.idl 3160 testing/MockContentFilterSettings.idl 3145 3161 testing/TypeConversions.idl 3146 3162 ) -
trunk/Source/WebCore/ChangeLog
r181600 r181601 1 2015-03-16 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=142747 5 6 Reviewed by Chris Dumez. 7 8 * CMakeLists.txt: 9 * PlatformMac.cmake: 10 Added more directories, interfaces, and forwarding headers. 11 Temporarily disabled the generating of ObjC bindings in CMake builds. 12 * platform/mac/PasteboardMac.mm: 13 Removed unused include. 14 1 15 2015-03-16 Joanmarie Diggs <jdiggs@igalia.com> 2 16 -
trunk/Source/WebCore/PlatformMac.cmake
r181496 r181601 3 3 "${WEBCORE_DIR}/bindings/objc" 4 4 "${WEBCORE_DIR}/bridge/objc" 5 "${WEBCORE_DIR}/editing/mac" 5 6 "${WEBCORE_DIR}/loader/archive/cf" 6 7 "${WEBCORE_DIR}/loader/cf" … … 145 146 platform/mac/WebCoreObjCExtras.mm 146 147 platform/mac/WebCoreSystemInterface.mm 147 platform/mac/WebCoreView.m148 148 platform/mac/WebNSAttributedStringExtras.mm 149 149 platform/mac/WebVideoFullscreenController.mm … … 210 210 211 211 set(WebCore_FORWARDING_HEADERS_FILES 212 bindings/js/SerializedScriptValue.h 213 bindings/objc/WebKitAvailability.h 214 215 bridge/IdentifierRep.h 216 bridge/npruntime_internal.h 217 218 contentextensions/CompiledContentExtension.h 219 220 editing/FindOptions.h 221 212 222 html/HTMLMediaElement.h 213 bindings/objc/WebKitAvailability.h 223 224 loader/FrameLoaderTypes.h 225 loader/LoaderStrategy.h 226 loader/ResourceLoaderOptions.h 227 228 Modules/indexeddb/IDBKeyData.h 229 Modules/indexeddb/IDBKeyPath.h 230 Modules/webdatabase/DatabaseDetails.h 231 232 page/ContextMenuContext.h 233 page/SecurityOrigin.h 234 page/SessionID.h 235 page/TextIndicator.h 236 page/UserScript.h 237 page/UserStyleSheet.h 238 239 platform/PlatformExportMacros.h 214 240 platform/DisplaySleepDisabler.h 241 242 platform/audio/AudioHardwareListener.h 243 244 platform/cocoa/MachSendRight.h 245 246 platform/graphics/Color.h 247 platform/graphics/FloatPoint.h 248 platform/graphics/FloatRect.h 249 platform/graphics/FloatSize.h 250 platform/graphics/GraphicsContext.h 251 platform/graphics/GraphicsLayer.h 252 platform/graphics/IntPoint.h 253 platform/graphics/IntRect.h 254 platform/graphics/IntSize.h 255 platform/graphics/NativeImagePtr.h 256 257 platform/graphics/cocoa/IOSurface.h 258 259 platform/graphics/transforms/AffineTransform.h 260 215 261 platform/mac/SoftLinking.h 262 platform/mac/WebCoreSystemInterface.h 263 264 platform/network/BlobDataFileReference.h 265 platform/network/BlobRegistryImpl.h 266 platform/network/HTTPHeaderMap.h 267 platform/network/NetworkStorageSession.h 268 platform/network/ResourceHandle.h 269 270 platform/network/cf/CertificateInfo.h 216 271 platform/network/cf/ResourceResponse.h 272 217 273 platform/spi/cg/CoreGraphicsSPI.h 274 275 plugins/PluginData.h 276 plugins/npruntime.h 218 277 ) 219 278 220 279 WEBKIT_CREATE_FORWARDING_HEADERS(WebCore DIRECTORIES ${WebCore_FORWARDING_HEADERS_DIRECTORIES} FILES ${WebCore_FORWARDING_HEADERS_FILES}) 221 280 222 set(FEATURE_DEFINES_OBJECTIVE_C "LANGUAGE_OBJECTIVE_C=1 ${FEATURE_DEFINES_WITH_SPACE_SEPARATOR}") 223 set(ADDITIONAL_BINDINGS_DEPENDENCIES 224 ${WINDOW_CONSTRUCTORS_FILE} 225 ${WORKERGLOBALSCOPE_CONSTRUCTORS_FILE} 226 ${DEDICATEDWORKERGLOBALSCOPE_CONSTRUCTORS_FILE} 227 ) 228 GENERATE_BINDINGS(WebCore_SOURCES 229 "${WebCore_NON_SVG_IDL_FILES}" 230 "${WEBCORE_DIR}" 231 "${IDL_INCLUDES}" 232 "${FEATURE_DEFINES_OBJECTIVE_C}" 233 ${DERIVED_SOURCES_WEBCORE_DIR} DOM ObjC mm 234 ${IDL_ATTRIBUTES_FILE} 235 ${SUPPLEMENTAL_DEPENDENCY_FILE} 236 ${ADDITIONAL_BINDINGS_DEPENDENCIES}) 281 # FIXME: Get Objective C bindings working. 282 #set(FEATURE_DEFINES_OBJECTIVE_C "LANGUAGE_OBJECTIVE_C=1 ${FEATURE_DEFINES_WITH_SPACE_SEPARATOR}") 283 #set(ADDITIONAL_BINDINGS_DEPENDENCIES 284 # ${WINDOW_CONSTRUCTORS_FILE} 285 # ${WORKERGLOBALSCOPE_CONSTRUCTORS_FILE} 286 # ${DEDICATEDWORKERGLOBALSCOPE_CONSTRUCTORS_FILE} 287 #) 288 #GENERATE_BINDINGS(WebCore_SOURCES 289 # "${WebCore_NON_SVG_IDL_FILES}" 290 # "${WEBCORE_DIR}" 291 # "${IDL_INCLUDES}" 292 # "${FEATURE_DEFINES_OBJECTIVE_C}" 293 # ${DERIVED_SOURCES_WEBCORE_DIR} DOM ObjC mm 294 # ${IDL_ATTRIBUTES_FILE} 295 # ${SUPPLEMENTAL_DEPENDENCY_FILE} 296 # ${ADDITIONAL_BINDINGS_DEPENDENCIES}) -
trunk/Source/WebCore/platform/mac/PasteboardMac.mm
r176780 r181601 28 28 29 29 #import "CachedImage.h" 30 #import "DOMRangeInternal.h"31 30 #import "Document.h" 32 31 #import "DocumentFragment.h" -
trunk/Source/WebKit2/ChangeLog
r181599 r181601 1 2015-03-16 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=142747 5 6 Reviewed by Chris Dumez. 7 8 * PlatformMac.cmake: 9 Started adding Mac-specific directories and headers. 10 1 11 2015-03-16 Alexey Proskuryakov <ap@apple.com> 2 12 -
trunk/Source/WebKit2/PlatformMac.cmake
r181496 r181601 1 1 #FIXME: Add Mac-specific sources here. 2 3 file(MAKE_DIRECTORY ${DERIVED_SOURCES_WEBKIT2_DIR}) 4 5 list(APPEND WebKit2_INCLUDE_DIRECTORIES 6 "${WEBCORE_DIR}/platform/mac" 7 "${WEBCORE_DIR}/platform/network/cf" 8 "${WEBCORE_DIR}/platform/graphics/opentype" 9 "${WEBKIT2_DIR}/UIProcess/mac" 10 "${WEBKIT2_DIR}/Platform/mac" 11 "${WEBKIT2_DIR}/Platform/IPC/mac" 12 "${WEBKIT2_DIR}/Shared/API/Cocoa" 13 "${WEBKIT2_DIR}/Shared/cf" 14 "${WEBKIT2_DIR}/Shared/mac" 15 "${WEBKIT2_DIR}/Shared/Plugins/mac" 16 "${DERIVED_SOURCES_DIR}/ForwardingHeaders" 17 ) 2 18 3 19 set(WEBKIT2_EXTRA_DEPENDENCIES
Note:
See TracChangeset
for help on using the changeset viewer.