Title: [213865] trunk/Source/WebCore
- Revision
- 213865
- Author
- [email protected]
- Date
- 2017-03-13 13:17:17 -0700 (Mon, 13 Mar 2017)
Log Message
Fix CMake build.
* PlatformMac.cmake:
Add new files.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (213864 => 213865)
--- trunk/Source/WebCore/ChangeLog 2017-03-13 20:16:24 UTC (rev 213864)
+++ trunk/Source/WebCore/ChangeLog 2017-03-13 20:17:17 UTC (rev 213865)
@@ -1,3 +1,10 @@
+2017-03-13 Alex Christensen <[email protected]>
+
+ Fix CMake build.
+
+ * PlatformMac.cmake:
+ Add new files.
+
2017-03-13 Chris Dumez <[email protected]>
Allow termination of background WebProcesses that go over a given CPU usage threshold
Modified: trunk/Source/WebCore/PlatformMac.cmake (213864 => 213865)
--- trunk/Source/WebCore/PlatformMac.cmake 2017-03-13 20:16:24 UTC (rev 213864)
+++ trunk/Source/WebCore/PlatformMac.cmake 2017-03-13 20:17:17 UTC (rev 213865)
@@ -166,6 +166,8 @@
accessibility/mac/WebAccessibilityObjectWrapperMac.mm
bindings/js/ScriptControllerMac.mm
+ bindings/js/JSWebGPURenderingContextCustom.cpp
+ bindings/js/JSWebGPURenderPassAttachmentDescriptorCustom.cpp
bridge/objc/ObjCRuntimeObject.mm
bridge/objc/WebScriptObject.mm
@@ -243,6 +245,28 @@
html/HTMLSlotElement.cpp
+ html/canvas/WebGPUBuffer.cpp
+ html/canvas/WebGPUCommandBuffer.cpp
+ html/canvas/WebGPUCommandQueue.cpp
+ html/canvas/WebGPUDepthStencilDescriptor.cpp
+ html/canvas/WebGPUDepthStencilState.cpp
+ html/canvas/WebGPUDrawable.cpp
+ html/canvas/WebGPUEnums.cpp
+ html/canvas/WebGPUFunction.cpp
+ html/canvas/WebGPULibrary.cpp
+ html/canvas/WebGPUObject.cpp
+ html/canvas/WebGPURenderCommandEncoder.cpp
+ html/canvas/WebGPURenderingContext.cpp
+ html/canvas/WebGPURenderPassAttachmentDescriptor.cpp
+ html/canvas/WebGPURenderPassColorAttachmentDescriptor.cpp
+ html/canvas/WebGPURenderPassDepthAttachmentDescriptor.cpp
+ html/canvas/WebGPURenderPassDescriptor.cpp
+ html/canvas/WebGPURenderPipelineColorAttachmentDescriptor.cpp
+ html/canvas/WebGPURenderPipelineDescriptor.cpp
+ html/canvas/WebGPURenderPipelineState.cpp
+ html/canvas/WebGPUTexture.cpp
+ html/canvas/WebGPUTextureDescriptor.cpp
+
html/shadow/ImageControlsRootElement.cpp
html/shadow/YouTubeEmbedShadowElement.cpp
@@ -299,6 +323,7 @@
page/scrolling/mac/ScrollingTreeMac.cpp
page/scrolling/mac/ScrollingTreeStickyNode.mm
+ platform/CPUMonitor.cpp
platform/LocalizedStrings.cpp
platform/RuntimeApplicationChecks.mm
platform/ScrollableArea.cpp
@@ -424,9 +449,22 @@
platform/graphics/cg/TransformationMatrixCG.cpp
platform/graphics/cocoa/GPUBufferMetal.mm
+ platform/graphics/cocoa/GPUCommandBufferMetal.mm
+ platform/graphics/cocoa/GPUCommandQueueMetal.mm
+ platform/graphics/cocoa/GPUDepthStencilDescriptorMetal.mm
+ platform/graphics/cocoa/GPUDepthStencilStateMetal.mm
platform/graphics/cocoa/GPUDeviceMetal.mm
+ platform/graphics/cocoa/GPUDrawableMetal.mm
platform/graphics/cocoa/GPUFunctionMetal.mm
platform/graphics/cocoa/GPULibraryMetal.mm
+ platform/graphics/cocoa/GPURenderCommandEncoderMetal.mm
+ platform/graphics/cocoa/GPURenderPassAttachmentDescriptorMetal.mm
+ platform/graphics/cocoa/GPURenderPassColorAttachmentDescriptorMetal.mm
+ platform/graphics/cocoa/GPURenderPassDepthAttachmentDescriptorMetal.mm
+ platform/graphics/cocoa/GPURenderPassDescriptorMetal.mm
+ platform/graphics/cocoa/GPURenderPipelineColorAttachmentDescriptorMetal.mm
+ platform/graphics/cocoa/GPURenderPipelineDescriptorMetal.mm
+ platform/graphics/cocoa/GPURenderPipelineStateMetal.mm
platform/graphics/cocoa/GPUTextureDescriptorMetal.mm
platform/graphics/cocoa/GPUTextureMetal.mm
platform/graphics/cocoa/FontCacheCoreText.cpp
@@ -444,11 +482,26 @@
platform/graphics/cv/VideoTextureCopierCV.cpp
platform/graphics/gpu/GPUBuffer.cpp
+ platform/graphics/gpu/GPUCommandBuffer.cpp
+ platform/graphics/gpu/GPUCommandQueue.cpp
+ platform/graphics/gpu/GPUDepthStencilDescriptor.cpp
+ platform/graphics/gpu/GPUDepthStencilState.cpp
platform/graphics/gpu/GPUDevice.cpp
+ platform/graphics/gpu/GPUDrawable.cpp
platform/graphics/gpu/GPUFunction.cpp
platform/graphics/gpu/GPULibrary.cpp
+ platform/graphics/gpu/GPURenderCommandEncoder.cpp
+ platform/graphics/gpu/GPURenderPassAttachmentDescriptor.cpp
+ platform/graphics/gpu/GPURenderPassColorAttachmentDescriptor.cpp
+ platform/graphics/gpu/GPURenderPassDepthAttachmentDescriptor.cpp
+ platform/graphics/gpu/GPURenderPassDescriptor.cpp
+ platform/graphics/gpu/GPURenderPipelineColorAttachmentDescriptor.cpp
+ platform/graphics/gpu/GPURenderPipelineDescriptor.cpp
+ platform/graphics/gpu/GPURenderPipelineState.cpp
platform/graphics/gpu/GPUTexture.cpp
platform/graphics/gpu/GPUTextureDescriptor.cpp
+ platform/graphics/gpu/Texture.cpp
+ platform/graphics/gpu/TilingData.cpp
platform/graphics/mac/ColorMac.mm
platform/graphics/mac/ComplexTextControllerCoreText.mm
@@ -552,8 +605,10 @@
platform/network/cf/SynchronousLoaderClientCFNet.cpp
platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.cpp
+ platform/network/cocoa/CookieCocoa.mm
platform/network/cocoa/CredentialCocoa.mm
platform/network/cocoa/NetworkLoadMetrics.mm
+ platform/network/cocoa/NetworkStorageSessionCocoa.mm
platform/network/cocoa/ProtectionSpaceCocoa.mm
platform/network/cocoa/ResourceRequestCocoa.mm
platform/network/cocoa/ResourceResponseCocoa.mm
@@ -760,6 +815,25 @@
list(APPEND WebCore_IDL_FILES
Modules/plugins/QuickTimePluginReplacement.idl
+ html/canvas/WebGPUBuffer.idl
+ html/canvas/WebGPUCommandBuffer.idl
+ html/canvas/WebGPUCommandQueue.idl
+ html/canvas/WebGPUDepthStencilDescriptor.idl
+ html/canvas/WebGPUDepthStencilState.idl
+ html/canvas/WebGPUDrawable.idl
+ html/canvas/WebGPUFunction.idl
+ html/canvas/WebGPULibrary.idl
+ html/canvas/WebGPURenderCommandEncoder.idl
+ html/canvas/WebGPURenderingContext.idl
+ html/canvas/WebGPURenderPassAttachmentDescriptor.idl
+ html/canvas/WebGPURenderPassColorAttachmentDescriptor.idl
+ html/canvas/WebGPURenderPassDepthAttachmentDescriptor.idl
+ html/canvas/WebGPURenderPassDescriptor.idl
+ html/canvas/WebGPURenderPipelineColorAttachmentDescriptor.idl
+ html/canvas/WebGPURenderPipelineDescriptor.idl
+ html/canvas/WebGPURenderPipelineState.idl
+ html/canvas/WebGPUTexture.idl
+ html/canvas/WebGPUTextureDescriptor.idl
)
WEBKIT_CREATE_FORWARDING_HEADERS(WebCore DIRECTORIES ${WebCore_FORWARDING_HEADERS_DIRECTORIES} FILES ${WebCore_FORWARDING_HEADERS_FILES})
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes