Changeset 239556 in webkit
- Timestamp:
- Dec 27, 2018, 8:13:47 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r239383 r239556 1 2018-12-27 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect Mac CMake build 4 https://bugs.webkit.org/show_bug.cgi?id=192658 5 6 Reviewed by Yusuke Suzuki. 7 8 * Source/cmake/OptionsMac.cmake: 9 1 10 2018-12-19 Adrian Perez de Castro <aperez@igalia.com> 2 11 -
trunk/Source/JavaScriptCore/ChangeLog
r239552 r239556 1 2018-12-27 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect Mac CMake build 4 https://bugs.webkit.org/show_bug.cgi?id=192658 5 6 Reviewed by Yusuke Suzuki. 7 8 * PlatformMac.cmake: 9 1 10 2018-12-25 Fujii Hironori <Hironori.Fujii@sony.com> 2 11 -
trunk/Source/JavaScriptCore/PlatformMac.cmake
r228898 r239556 11 11 12 12 list(APPEND JavaScriptCore_PRIVATE_INCLUDE_DIRECTORIES 13 ${DERIVED_SOURCES_WTF_DIR} 13 14 ${JAVASCRIPTCORE_DIR}/disassembler/udis86 14 15 ${JAVASCRIPTCORE_DIR}/inspector/cocoa -
trunk/Source/WTF/ChangeLog
r239538 r239556 1 2018-12-27 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect Mac CMake build 4 https://bugs.webkit.org/show_bug.cgi?id=192658 5 6 Reviewed by Yusuke Suzuki. 7 8 * wtf/PlatformMac.cmake: 9 * wtf/cf/CFURLExtras.cpp: 10 * wtf/cf/CFURLExtras.h: 11 * wtf/cf/URLCF.cpp: 12 * wtf/cocoa/NSURLExtras.h: 13 * wtf/cocoa/NSURLExtras.mm: 14 * wtf/cocoa/URLCocoa.mm: 15 1 16 2018-12-21 Dan Bernstein <mitz@apple.com> 2 17 -
trunk/Source/WTF/wtf/PlatformMac.cmake
r238771 r239556 9 9 10 10 list(APPEND WTF_PUBLIC_HEADERS 11 WeakObjCPtr.h 12 11 13 cf/CFURLExtras.h 12 14 cf/TypeCastsCF.h 13 15 14 16 cocoa/Entitlements.h 15 cocoa/MachSendRight.h16 17 cocoa/NSURLExtras.h 17 18 cocoa/SoftLinking.h … … 24 25 spi/cf/CFStringSPI.h 25 26 27 spi/cocoa/CFXPCBridgeSPI.h 26 28 spi/cocoa/SecuritySPI.h 27 29 spi/cocoa/objcSPI.h … … 47 49 cocoa/AutodrainedPool.cpp 48 50 cocoa/CPUTimeCocoa.cpp 49 cocoa/Entitlements. cpp51 cocoa/Entitlements.mm 50 52 cocoa/MachSendRight.cpp 51 53 cocoa/MainThreadCocoa.mm … … 70 72 71 73 list(APPEND WTF_PRIVATE_INCLUDE_DIRECTORIES 72 "${WTF_DIR}/icu"73 74 ${DERIVED_SOURCES_WTF_DIR} 74 75 ) 75 76 76 77 file(COPY mac/MachExceptions.defs DESTINATION ${DERIVED_SOURCES_WTF_DIR}) 78 file(COPY "${WTF_DIR}/icu/unicode" DESTINATION ${DERIVED_SOURCES_WTF_DIR}) 77 79 78 80 add_custom_command( -
trunk/Source/WTF/wtf/cf/CFURLExtras.cpp
r238771 r239556 25 25 26 26 #include "config.h" 27 #include "CFURLExtras.h"27 #include <wtf/cf/CFURLExtras.h> 28 28 29 29 #include <wtf/URL.h> -
trunk/Source/WTF/wtf/cf/CFURLExtras.h
r238771 r239556 24 24 */ 25 25 26 #ifndef CFURLExtras_h 27 #define CFURLExtras_h 26 #pragma once 28 27 29 28 #include <wtf/Forward.h> … … 43 42 44 43 } 45 46 #endif // CFURLExtras_h -
trunk/Source/WTF/wtf/cf/URLCF.cpp
r238771 r239556 27 27 #include <wtf/URL.h> 28 28 29 #include "CFURLExtras.h"30 #include "URLParser.h"31 29 #include <CoreFoundation/CFURL.h> 30 #include <wtf/URLParser.h> 31 #include <wtf/cf/CFURLExtras.h> 32 32 #include <wtf/text/CString.h> 33 33 -
trunk/Source/WTF/wtf/cocoa/NSURLExtras.h
r238771 r239556 27 27 */ 28 28 29 #pragma once 30 29 31 @class NSString; 30 32 @class NSURL; -
trunk/Source/WTF/wtf/cocoa/NSURLExtras.mm
r239506 r239556 31 31 #import "NSURLExtras.h" 32 32 33 #import "CFURLExtras.h" 34 #import "URLParser.h" 33 #import <unicode/uchar.h> 34 #import <unicode/uidna.h> 35 #import <unicode/uscript.h> 35 36 #import <wtf/Function.h> 36 37 #import <wtf/HexNumber.h> 37 38 #import <wtf/ObjCRuntimeExtras.h> 38 39 #import <wtf/RetainPtr.h> 40 #import <wtf/URLParser.h> 39 41 #import <wtf/Vector.h> 40 #import <unicode/uchar.h> 41 #import <unicode/uidna.h> 42 #import <unicode/uscript.h> 42 #import <wtf/cf/CFURLExtras.h> 43 43 44 44 // Needs to be big enough to hold an IDN-encoded name. -
trunk/Source/WTF/wtf/cocoa/URLCocoa.mm
r238771 r239556 27 27 #import <wtf/URL.h> 28 28 29 #import "CFURLExtras.h"30 #import "NSURLExtras.h"31 29 #import <wtf/ObjCRuntimeExtras.h> 32 30 #import <wtf/URLParser.h> 31 #import <wtf/cf/CFURLExtras.h> 32 #import <wtf/cocoa/NSURLExtras.h> 33 33 #import <wtf/text/CString.h> 34 34 -
trunk/Source/WebCore/CMakeLists.txt
r239410 r239556 1844 1844 WORKING_DIRECTORY ${DERIVED_SOURCES_WEBCORE_DIR} 1845 1845 COMMAND ${PERL_EXECUTABLE} -ne "print" ${WebCore_CSS_VALUE_KEYWORDS} > ${DERIVED_SOURCES_WEBCORE_DIR}/CSSValueKeywords.in 1846 COMMAND ${PERL_EXECUTABLE} ${WEBCORE_DIR}/css/makevalues.pl --defines "${FEATURE_DEFINES_WITH_SPACE_SEPARATOR} " --preprocessor "${CODE_GENERATOR_PREPROCESSOR}" --gperf-executable "${GPERF_EXECUTABLE}"1846 COMMAND ${PERL_EXECUTABLE} ${WEBCORE_DIR}/css/makevalues.pl --defines "${FEATURE_DEFINES_WITH_SPACE_SEPARATOR} ${CSS_VALUE_PLATFORM_DEFINES}" --preprocessor "${CODE_GENERATOR_PREPROCESSOR}" --gperf-executable "${GPERF_EXECUTABLE}" 1847 1847 VERBATIM) 1848 1848 list(APPEND WebCore_SOURCES ${DERIVED_SOURCES_WEBCORE_DIR}/CSSValueKeywords.cpp) -
trunk/Source/WebCore/ChangeLog
r239554 r239556 1 2018-12-27 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect Mac CMake build 4 https://bugs.webkit.org/show_bug.cgi?id=192658 5 6 Reviewed by Yusuke Suzuki. 7 8 This makes it so JSC and most of WebCore builds. 9 WebCore's use of ARC seems inconsistent, so I'll fix that later. 10 11 * PlatformMac.cmake: 12 * config.h: 13 1 14 2018-12-26 Jim Mason <jmason@ibinx.com> 2 15 -
trunk/Source/WebCore/Modules/webgpu/WHLSL/WHLSLLexer.cpp
r239427 r239556 26 26 #pragma once 27 27 28 #if ENABLE(WEBGPU)29 30 28 #include "config.h" 31 29 #include "WHLSLLexer.h" 30 31 #if ENABLE(WEBGPU) 32 32 33 33 namespace WebCore { -
trunk/Source/WebCore/PAL/ChangeLog
r239531 r239556 1 2018-12-27 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect Mac CMake build 4 https://bugs.webkit.org/show_bug.cgi?id=192658 5 6 Reviewed by Yusuke Suzuki. 7 8 * pal/PlatformMac.cmake: 9 1 10 2018-12-21 Eric Carlson <eric.carlson@apple.com> 2 11 -
trunk/Source/WebCore/PAL/pal/PlatformMac.cmake
r238434 r239556 17 17 18 18 spi/cocoa/AVKitSPI.h 19 spi/cocoa/AudioToolboxSPI.h 19 20 spi/cocoa/CFNSURLConnectionSPI.h 20 21 spi/cocoa/CoreTextSPI.h … … 48 49 spi/cocoa/pthreadSPI.h 49 50 51 spi/ios/DataDetectorsUISPI.h 52 spi/ios/GraphicsServicesSPI.h 53 50 54 spi/mac/AVFoundationSPI.h 55 spi/mac/CoreUISPI.h 51 56 spi/mac/DataDetectorsSPI.h 52 57 spi/mac/HIServicesSPI.h … … 56 61 spi/mac/MetadataSPI.h 57 62 spi/mac/NSAccessibilitySPI.h 63 spi/mac/NSAppearanceSPI.h 58 64 spi/mac/NSApplicationSPI.h 59 65 spi/mac/NSCellSPI.h … … 61 67 spi/mac/NSFontSPI.h 62 68 spi/mac/NSGraphicsSPI.h 69 spi/mac/NSImageSPI.h 63 70 spi/mac/NSImmediateActionGestureRecognizerSPI.h 64 71 spi/mac/NSMenuSPI.h … … 98 105 99 106 cocoa/FileSizeFormatterCocoa.mm 100 cocoa/LoggingCocoa.mm101 107 cocoa/PassKitSoftLink.mm 102 108 … … 116 122 117 123 list(APPEND PAL_PRIVATE_INCLUDE_DIRECTORIES 124 "${DERIVED_SOURCES_WTF_DIR}" 118 125 "${PAL_DIR}/pal/avfoundation" 119 126 "${PAL_DIR}/pal/cf" -
trunk/Source/WebCore/PlatformMac.cmake
r238815 r239556 1 find_library(ACCELERATE_LIBRARY accelerate)2 1 find_library(APPLICATIONSERVICES_LIBRARY ApplicationServices) 3 2 find_library(AVFOUNDATION_LIBRARY AVFoundation) … … 24 23 list(APPEND WebCore_UNIFIED_SOURCE_LIST_FILES 25 24 "SourcesCocoa.txt" 26 "SourcesMac.txt"27 25 ) 28 26 29 27 list(APPEND WebCore_LIBRARIES 30 ${ACCELERATE_LIBRARY}31 28 ${AUDIOTOOLBOX_LIBRARY} 32 29 ${AUDIOUNIT_LIBRARY} … … 68 65 69 66 list(APPEND WebCore_INCLUDE_DIRECTORIES 67 "${CMAKE_SOURCE_DIR}/Source" 68 "${DERIVED_SOURCES_WTF_DIR}" 70 69 "${THIRDPARTY_DIR}/ANGLE" 71 70 "${THIRDPARTY_DIR}/ANGLE/include/KHR" … … 95 94 "${WEBCORE_DIR}/platform/graphics/cv" 96 95 "${WEBCORE_DIR}/platform/graphics/gpu" 96 "${WEBCORE_DIR}/platform/graphics/gpu/legacy" 97 97 "${WEBCORE_DIR}/platform/graphics/egl" 98 98 "${WEBCORE_DIR}/platform/graphics/opentype" … … 143 143 144 144 editing/mac/AlternativeTextUIController.mm 145 editing/mac/DictionaryLookup.mm146 145 editing/mac/EditorMac.mm 147 146 editing/mac/TextAlternativeWithRange.mm 148 147 editing/mac/TextUndoInsertionMarkupMac.mm 149 editing/mac/WebContentReaderMac.mm150 148 151 149 html/HTMLSlotElement.cpp … … 159 157 page/mac/ServicesOverlayController.mm 160 158 page/mac/TextIndicatorWindow.mm 161 page/mac/UserAgentMac.mm162 159 page/mac/WheelEventDeltaFilterMac.mm 163 160 … … 174 171 platform/audio/AudioSession.cpp 175 172 176 platform/audio/cocoa/MediaSessionManagerCocoa.cpp177 173 platform/audio/cocoa/WebAudioBufferList.cpp 178 174 … … 186 182 platform/audio/mac/CARingBuffer.cpp 187 183 platform/audio/mac/FFTFrameMac.cpp 188 platform/audio/mac/MediaSessionManagerMac.mm189 184 190 185 platform/cf/FileSystemCF.cpp … … 203 198 platform/cocoa/LocalizedStringsCocoa.mm 204 199 platform/cocoa/MIMETypeRegistryCocoa.mm 205 platform/cocoa/MachSendRight.cpp206 200 platform/cocoa/NetworkExtensionContentFilter.mm 207 201 platform/cocoa/ParentalControlsContentFilter.mm … … 329 323 platform/graphics/mac/IntRectMac.mm 330 324 platform/graphics/mac/IntSizeMac.mm 331 platform/graphics/mac/MediaPlayerPrivateQTKit.mm332 platform/graphics/mac/MediaTimeQTKit.mm333 325 platform/graphics/mac/PDFDocumentImageMac.mm 334 326 platform/graphics/mac/SimpleFontDataCoreText.cpp 335 327 platform/graphics/mac/WebLayer.mm 336 337 platform/graphics/metal/GPUBufferMetal.mm338 platform/graphics/metal/GPUCommandBufferMetal.mm339 platform/graphics/metal/GPUCommandQueueMetal.mm340 platform/graphics/metal/GPUComputeCommandEncoderMetal.mm341 platform/graphics/metal/GPUComputePipelineStateMetal.mm342 platform/graphics/metal/GPUDepthStencilDescriptorMetal.mm343 platform/graphics/metal/GPUDepthStencilStateMetal.mm344 platform/graphics/metal/GPUDeviceMetal.mm345 platform/graphics/metal/GPUDrawableMetal.mm346 platform/graphics/metal/GPUFunctionMetal.mm347 platform/graphics/metal/GPULibraryMetal.mm348 platform/graphics/metal/GPURenderCommandEncoderMetal.mm349 platform/graphics/metal/GPURenderPassAttachmentDescriptorMetal.mm350 platform/graphics/metal/GPURenderPassColorAttachmentDescriptorMetal.mm351 platform/graphics/metal/GPURenderPassDepthAttachmentDescriptorMetal.mm352 platform/graphics/metal/GPURenderPassDescriptorMetal.mm353 platform/graphics/metal/GPURenderPipelineColorAttachmentDescriptorMetal.mm354 platform/graphics/metal/GPURenderPipelineDescriptorMetal.mm355 platform/graphics/metal/GPURenderPipelineStateMetal.mm356 platform/graphics/metal/GPUTextureDescriptorMetal.mm357 platform/graphics/metal/GPUTextureMetal.mm358 328 359 329 platform/graphics/opengl/Extensions3DOpenGL.cpp … … 405 375 platform/mac/WebGLBlacklist.mm 406 376 platform/mac/WebNSAttributedStringExtras.mm 407 platform/mac/WebWindowAnimation.mm408 377 platform/mac/WidgetMac.mm 409 378 … … 513 482 html/parser 514 483 html/shadow 484 html/track 515 485 516 486 inspector/agents … … 535 505 platform/cf 536 506 platform/cocoa 507 platform/ios 537 508 platform/graphics 538 509 platform/mac … … 548 519 platform/gamepad/mac 549 520 521 platform/graphics/avfoundation 550 522 platform/graphics/ca 551 523 platform/graphics/cocoa … … 648 620 ${DEDICATEDWORKERGLOBALSCOPE_CONSTRUCTORS_FILE} 649 621 ) 622 set(CSS_VALUE_PLATFORM_DEFINES WTF_PLATFORM_MAC=1) 650 623 651 624 list(APPEND WebCoreTestSupport_LIBRARIES PRIVATE WebCore) -
trunk/Source/WebCore/SourcesCocoa.txt
r239495 r239556 495 495 platform/mediastream/mac/AudioTrackPrivateMediaStreamCocoa.cpp 496 496 platform/mediastream/mac/AVCaptureDeviceManager.mm @no-unify 497 platform/mediastream/mac/AVMediaCaptureSource.mm @no-unify498 497 platform/mediastream/mac/AVVideoCaptureSource.mm @no-unify 499 498 platform/mediastream/mac/MockRealtimeVideoSourceMac.mm -
trunk/Source/WebCore/config.h
r238949 r239556 37 37 #if PLATFORM(MAC) && defined(BUILDING_WITH_CMAKE) 38 38 #include "WebCorePrefix.h" 39 #ifndef JSC_API_AVAILABLE 40 #define JSC_API_AVAILABLE(...) 41 #endif 39 42 #endif 40 43 -
trunk/Source/WebCore/platform/mac/WebCoreFullScreenPlaceholderView.h
r234348 r239556 27 27 28 28 #import <wtf/RetainPtr.h> 29 #import <wtf/WeakObjCPtr.h> 29 30 30 31 WEBCORE_EXPORT @interface WebCoreFullScreenPlaceholderView : NSView { … … 32 33 RetainPtr<NSVisualEffectView> _effectView; 33 34 RetainPtr<NSTextField> _exitWarning; 34 __weak NSResponder *_target;35 WeakObjCPtr<NSResponder> _target; 35 36 } 36 37 @property (nullable, strong) id contents; -
trunk/Source/WebCore/platform/mac/WebCoreFullScreenPlaceholderView.mm
r237266 r239556 82 82 } 83 83 84 @synthesize target = _target; 84 - (NSResponder *)target 85 { 86 return _target.get().get(); 87 } 88 89 - (void)setTarget:(NSResponder *)target 90 { 91 _target = target; 92 } 85 93 86 94 @dynamic contents; -
trunk/Source/WebKit/ChangeLog
r239555 r239556 1 2018-12-27 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect Mac CMake build 4 https://bugs.webkit.org/show_bug.cgi?id=192658 5 6 Reviewed by Yusuke Suzuki. 7 8 * PlatformMac.cmake: 9 1 10 2018-12-26 Fujii Hironori <Hironori.Fujii@sony.com> 2 11 -
trunk/Source/WebKit/PlatformMac.cmake
r239262 r239556 95 95 Shared/API/c/mac/WKWebArchive.cpp 96 96 Shared/API/c/mac/WKWebArchiveResource.cpp 97 98 Shared/Authentication/mac/AuthenticationManager.mac.mm99 97 100 98 Shared/Cocoa/APIDataCocoa.mm … … 138 136 Shared/mac/CodeSigning.mm 139 137 Shared/mac/ColorSpaceData.mm 140 Shared/mac/CookieStorageShimLibrary.cpp141 138 Shared/mac/HangDetectionDisablerMac.mm 142 139 Shared/mac/NativeWebGestureEventMac.mm … … 264 261 UIProcess/Cocoa/WebProcessPoolCocoa.mm 265 262 UIProcess/Cocoa/WebProcessProxyCocoa.mm 266 UIProcess/Cocoa/WebResourceLoadStatisticsStoreCocoa.mm267 263 UIProcess/Cocoa/WebURLSchemeHandlerCocoa.mm 268 264 UIProcess/Cocoa/WebViewImpl.mm … … 271 267 272 268 UIProcess/Network/CustomProtocols/LegacyCustomProtocolManagerProxy.cpp 273 274 UIProcess/Network/mac/NetworkProcessProxyMac.mm275 269 276 270 UIProcess/Plugins/mac/PluginInfoStoreMac.mm -
trunk/Source/WebKitLegacy/ChangeLog
r239535 r239556 1 2018-12-27 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect Mac CMake build 4 https://bugs.webkit.org/show_bug.cgi?id=192658 5 6 Reviewed by Yusuke Suzuki. 7 8 * PlatformMac.cmake: 9 1 10 2018-12-20 Yusuke Suzuki <yusukesuzuki@slowstart.org> 2 11 -
trunk/Source/WebKitLegacy/PlatformMac.cmake
r231170 r239556 7 7 "${DERIVED_SOURCES_WEBKITLEGACY_DIR}" 8 8 "${CMAKE_SOURCE_DIR}/WebKitLibraries" 9 ) 10 11 list(APPEND WebKitLegacy_SYSTEM_INCLUDE_DIRECTORIES 12 mac 13 mac/Carbon 14 mac/DefaultDelegates 15 mac/DOM 16 mac/History 17 mac/icu 18 mac/Misc 19 mac/Panels 20 mac/Plugins 21 mac/Plugins/Hosted 22 mac/Storage 23 mac/WebCoreSupport 24 mac/WebInspector 25 mac/WebView 9 "${WEBKITLEGACY_DIR}/mac" 10 "${WEBKITLEGACY_DIR}/mac/Carbon" 11 "${WEBKITLEGACY_DIR}/mac/DefaultDelegates" 12 "${WEBKITLEGACY_DIR}/mac/DOM" 13 "${WEBKITLEGACY_DIR}/mac/History" 14 "${WEBKITLEGACY_DIR}/mac/icu" 15 "${WEBKITLEGACY_DIR}/mac/Misc" 16 "${WEBKITLEGACY_DIR}/mac/Panels" 17 "${WEBKITLEGACY_DIR}/mac/Plugins" 18 "${WEBKITLEGACY_DIR}/mac/Plugins/Hosted" 19 "${WEBKITLEGACY_DIR}/mac/Storage" 20 "${WEBKITLEGACY_DIR}/mac/WebCoreSupport" 21 "${WEBKITLEGACY_DIR}/mac/WebInspector" 22 "${WEBKITLEGACY_DIR}/mac/WebView" 26 23 ) 27 24 … … 272 269 mac/WebCoreSupport/WebSecurityOrigin.mm 273 270 mac/WebCoreSupport/WebSelectionServiceController.mm 274 mac/WebCoreSupport/WebUserMediaClient.mm275 271 mac/WebCoreSupport/WebValidationMessageClient.mm 276 272 mac/WebCoreSupport/WebVisitedLinkStore.mm -
trunk/Source/cmake/OptionsMac.cmake
r238789 r239556 28 28 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_INPUT_TYPE_TIME PRIVATE ON) 29 29 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_LEGACY_ENCRYPTED_MEDIA PRIVATE ON) 30 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_LETTERPRESS PRIVATE O N)30 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_LETTERPRESS PRIVATE OFF) 31 31 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_SOURCE PRIVATE ON) 32 32 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEMORY_SAMPLER PRIVATE ON) 33 33 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MOUSE_CURSOR_SCALE PRIVATE ON) 34 34 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_PDFKIT_PLUGIN PRIVATE ON) 35 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_RESOURCE_LOAD_STATISTICS PRIVATE ON) 35 36 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_RESOURCE_USAGE PRIVATE ON) 36 37 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_RUBBER_BANDING PRIVATE ON) … … 38 39 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_SPEECH_SYNTHESIS PRIVATE ON) 39 40 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_TELEPHONE_NUMBER_DETECTION PRIVATE ON) 41 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO_PRESENTATION_MODE PRIVATE ON) 40 42 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEBGL2 PRIVATE ON) 41 43 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEBGPU PRIVATE ON) 42 44 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEBMETAL PRIVATE ON) 45 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WIRELESS_PLAYBACK_TARGET PRIVATE ON) 43 46 44 47 # FIXME: These are turned off temporarily to get CMake working easier. -
trunk/Tools/ChangeLog
r239553 r239556 1 2018-12-27 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect Mac CMake build 4 https://bugs.webkit.org/show_bug.cgi?id=192658 5 6 Reviewed by Yusuke Suzuki. 7 8 * DumpRenderTree/PlatformMac.cmake: 9 * MiniBrowser/mac/CMakeLists.txt: 10 * TestWebKitAPI/PlatformMac.cmake: 11 1 12 2018-12-26 Adrian Perez de Castro <aperez@igalia.com> 2 13 -
trunk/Tools/DumpRenderTree/PlatformMac.cmake
r231170 r239556 78 78 mac/DumpRenderTreeMain.mm 79 79 mac/DumpRenderTreePasteboard.mm 80 mac/DumpRenderTreeSpellChecker.mm81 80 mac/DumpRenderTreeWindow.mm 82 81 mac/EditingDelegate.mm -
trunk/Tools/MiniBrowser/mac/CMakeLists.txt
r222194 r239556 13 13 ${MINIBROWSER_DIR}/main.m 14 14 ${TOOLS_DIR}/MiniBrowser/MBToolbarItem.m 15 ${TOOLS_DIR}/MiniBrowser/MiniBrowserWebProcessPlugIn.m16 15 ) 17 16 -
trunk/Tools/TestWebKitAPI/PlatformMac.cmake
r215606 r239556 26 26 27 27 set(bundle_harness_SOURCES 28 ${TESTWEBKITAPI_DIR}/cocoa/InstanceMethodSwizzler.mm29 28 ${TESTWEBKITAPI_DIR}/cocoa/PlatformUtilitiesCocoa.mm 30 29 ${TESTWEBKITAPI_DIR}/cocoa/UtilitiesCocoa.mm
Note:
See TracChangeset
for help on using the changeset viewer.