Title: [213699] trunk/Source
Revision
213699
Author
[email protected]
Date
2017-03-09 19:43:10 -0800 (Thu, 09 Mar 2017)

Log Message

Fix CMake build

* PlatformMac.cmake:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (213698 => 213699)


--- trunk/Source/WebCore/ChangeLog	2017-03-10 02:37:58 UTC (rev 213698)
+++ trunk/Source/WebCore/ChangeLog	2017-03-10 03:43:10 UTC (rev 213699)
@@ -1,5 +1,11 @@
 2017-03-09  Alex Christensen  <[email protected]>
 
+        Fix CMake build
+
+        * PlatformMac.cmake:
+
+2017-03-09  Alex Christensen  <[email protected]>
+
         Fix GTK build after r213696
 
         * PlatformMac.cmake:

Modified: trunk/Source/WebCore/PlatformMac.cmake (213698 => 213699)


--- trunk/Source/WebCore/PlatformMac.cmake	2017-03-10 02:37:58 UTC (rev 213698)
+++ trunk/Source/WebCore/PlatformMac.cmake	2017-03-10 03:43:10 UTC (rev 213699)
@@ -20,6 +20,7 @@
 find_library(DISKARBITRATION_LIBRARY DiskArbitration)
 find_library(IOKIT_LIBRARY IOKit)
 find_library(IOSURFACE_LIBRARY IOSurface)
+find_library(METAL_LIBRARY Metal)
 find_library(OPENGL_LIBRARY OpenGL)
 find_library(QUARTZ_LIBRARY Quartz)
 find_library(QUARTZCORE_LIBRARY QuartzCore)
@@ -40,6 +41,7 @@
     ${DISKARBITRATION_LIBRARY}
     ${IOKIT_LIBRARY}
     ${IOSURFACE_LIBRARY}
+    ${METAL_LIBRARY}
     ${OPENGL_LIBRARY}
     ${QUARTZ_LIBRARY}
     ${QUARTZCORE_LIBRARY}
@@ -215,6 +217,7 @@
     crypto/mac/CryptoAlgorithmRSASSA_PKCS1_v1_5Mac.cpp
     crypto/mac/CryptoAlgorithmRSA_OAEPMac.cpp
     crypto/mac/CryptoAlgorithmRegistryMac.cpp
+    crypto/mac/CryptoKeyECMac.cpp
     crypto/mac/CryptoKeyMac.cpp
     crypto/mac/CryptoKeyRSAMac.cpp
     crypto/mac/SerializedCryptoKeyWrapMac.mm
@@ -304,6 +307,8 @@
 
     platform/audio/cocoa/MediaSessionManagerCocoa.cpp
 
+    platform/audio/mac/CAAudioStreamDescription.cpp
+
     platform/audio/mac/AudioBusMac.mm
     platform/audio/mac/AudioDestinationMac.cpp
     platform/audio/mac/AudioFileReaderMac.cpp
@@ -430,6 +435,7 @@
     platform/graphics/cocoa/IOSurfacePoolCocoa.mm
     platform/graphics/cocoa/WebActionDisablingCALayerDelegate.mm
     platform/graphics/cocoa/WebCoreCALayerExtras.mm
+    platform/graphics/cocoa/WebGPULayer.mm
 
     platform/graphics/cv/PixelBufferConformerCV.cpp
     platform/graphics/cv/TextureCacheCV.mm

Modified: trunk/Source/WebKit2/ChangeLog (213698 => 213699)


--- trunk/Source/WebKit2/ChangeLog	2017-03-10 02:37:58 UTC (rev 213698)
+++ trunk/Source/WebKit2/ChangeLog	2017-03-10 03:43:10 UTC (rev 213699)
@@ -1,5 +1,11 @@
 2017-03-09  Alex Christensen  <[email protected]>
 
+        Fix CMake build
+
+        * PlatformMac.cmake:
+
+2017-03-09  Alex Christensen  <[email protected]>
+
         Fix GTK build after r213696
 
         * CMakeLists.txt:

Modified: trunk/Source/WebKit2/PlatformMac.cmake (213698 => 213699)


--- trunk/Source/WebKit2/PlatformMac.cmake	2017-03-10 02:37:58 UTC (rev 213698)
+++ trunk/Source/WebKit2/PlatformMac.cmake	2017-03-10 03:43:10 UTC (rev 213699)
@@ -22,6 +22,8 @@
 list(APPEND WebKit2_SOURCES
     DatabaseProcess/mac/DatabaseProcessMac.mm
 
+    NetworkProcess/CustomProtocols/Cocoa/LegacyCustomProtocolManagerCocoa.mm
+
     NetworkProcess/Downloads/PendingDownload.cpp
 
     NetworkProcess/Downloads/cocoa/DownloadCocoa.mm
@@ -188,6 +190,8 @@
     UIProcess/API/Cocoa/WKBrowsingContextController.mm
     UIProcess/API/Cocoa/WKBrowsingContextGroup.mm
     UIProcess/API/Cocoa/WKConnection.mm
+    UIProcess/API/Cocoa/WKContentExtension.mm
+    UIProcess/API/Cocoa/WKContentExtensionStore.mm
     UIProcess/API/Cocoa/WKError.mm
     UIProcess/API/Cocoa/WKFrameInfo.mm
     UIProcess/API/Cocoa/WKMenuItemIdentifiers.mm
@@ -206,6 +210,7 @@
     UIProcess/API/Cocoa/WKScriptMessage.mm
     UIProcess/API/Cocoa/WKSecurityOrigin.mm
     UIProcess/API/Cocoa/WKTypeRefWrapper.mm
+    UIProcess/API/Cocoa/WKURLSchemeHandlerTask.mm
     UIProcess/API/Cocoa/WKUserContentController.mm
     UIProcess/API/Cocoa/WKUserScript.mm
     UIProcess/API/Cocoa/WKWebView.mm
@@ -245,6 +250,7 @@
     UIProcess/Cocoa/FindClient.mm
     UIProcess/Cocoa/FullscreenClient.mm
     UIProcess/Cocoa/IconLoadingDelegate.mm
+    UIProcess/Cocoa/LegacyCustomProtocolManagerClient.mm
     UIProcess/Cocoa/NavigationState.mm
     UIProcess/Cocoa/RemoteLayerTreeScrollingPerformanceData.mm
     UIProcess/Cocoa/SessionStateCoding.mm
@@ -257,6 +263,7 @@
     UIProcess/Cocoa/WebPasteboardProxyCocoa.mm
     UIProcess/Cocoa/WebProcessPoolCocoa.mm
     UIProcess/Cocoa/WebProcessProxyCocoa.mm
+    UIProcess/Cocoa/WebURLSchemeHandlerCocoa.mm
     UIProcess/Cocoa/WebViewImpl.mm
 
     UIProcess/Launcher/mac/ProcessLauncherMac.mm
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to