Title: [205702] releases/WebKitGTK/webkit-2.14/Source/WebCore
Revision
205702
Author
[email protected]
Date
2016-09-09 01:15:29 -0700 (Fri, 09 Sep 2016)

Log Message

Merge r205457 - [CMake] Duplicated IDL files in WebCore_IDL_FILES
https://bugs.webkit.org/show_bug.cgi?id=161592

Patch by Fujii Hironori <[email protected]> on 2016-09-05
Reviewed by Darin Adler.

* CMakeLists.txt: Removed duplicated IDL files.
* DerivedSources.cpp: Added #if ENABLE(USER_MESSAGE_HANDLERS)

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.14/Source/WebCore/CMakeLists.txt (205701 => 205702)


--- releases/WebKitGTK/webkit-2.14/Source/WebCore/CMakeLists.txt	2016-09-09 07:42:56 UTC (rev 205701)
+++ releases/WebKitGTK/webkit-2.14/Source/WebCore/CMakeLists.txt	2016-09-09 08:15:29 UTC (rev 205702)
@@ -542,7 +542,6 @@
     html/ValidityState.idl
     html/VoidCallback.idl
 
-    html/canvas/ANGLEInstancedArrays.idl
     html/canvas/CanvasGradient.idl
     html/canvas/CanvasPath.idl
     html/canvas/CanvasPattern.idl
@@ -549,61 +548,7 @@
     html/canvas/CanvasProxy.idl
     html/canvas/CanvasRenderingContext2D.idl
     html/canvas/DOMPath.idl
-    html/canvas/EXTBlendMinMax.idl
-    html/canvas/EXTFragDepth.idl
-    html/canvas/EXTShaderTextureLOD.idl
-    html/canvas/EXTTextureFilterAnisotropic.idl
-    html/canvas/EXTsRGB.idl
-    html/canvas/OESElementIndexUint.idl
-    html/canvas/OESStandardDerivatives.idl
-    html/canvas/OESTextureFloat.idl
-    html/canvas/OESTextureFloatLinear.idl
-    html/canvas/OESTextureHalfFloat.idl
-    html/canvas/OESTextureHalfFloatLinear.idl
-    html/canvas/OESVertexArrayObject.idl
-    html/canvas/WebGL2RenderingContext.idl
-    html/canvas/WebGLActiveInfo.idl
-    html/canvas/WebGLBuffer.idl
-    html/canvas/WebGLCompressedTextureATC.idl
-    html/canvas/WebGLCompressedTexturePVRTC.idl
-    html/canvas/WebGLCompressedTextureS3TC.idl
-    html/canvas/WebGLContextAttributes.idl
-    html/canvas/WebGLContextEvent.idl
-    html/canvas/WebGLDebugRendererInfo.idl
-    html/canvas/WebGLDebugShaders.idl
-    html/canvas/WebGLDepthTexture.idl
-    html/canvas/WebGLDrawBuffers.idl
-    html/canvas/WebGLFramebuffer.idl
-    html/canvas/WebGLLoseContext.idl
-    html/canvas/WebGLProgram.idl
-    html/canvas/WebGLQuery.idl
-    html/canvas/WebGLRenderbuffer.idl
-    html/canvas/WebGLRenderingContext.idl
-    html/canvas/WebGLRenderingContextBase.idl
-    html/canvas/WebGLSampler.idl
-    html/canvas/WebGLShader.idl
-    html/canvas/WebGLShaderPrecisionFormat.idl
-    html/canvas/WebGLSync.idl
-    html/canvas/WebGLTexture.idl
-    html/canvas/WebGLTransformFeedback.idl
-    html/canvas/WebGLUniformLocation.idl
-    html/canvas/WebGLVertexArrayObject.idl
-    html/canvas/WebGLVertexArrayObjectOES.idl
 
-    html/track/AudioTrack.idl
-    html/track/AudioTrackList.idl
-    html/track/DataCue.idl
-    html/track/TextTrack.idl
-    html/track/TextTrackCue.idl
-    html/track/TextTrackCueList.idl
-    html/track/TextTrackList.idl
-    html/track/TrackEvent.idl
-    html/track/VTTCue.idl
-    html/track/VTTRegion.idl
-    html/track/VTTRegionList.idl
-    html/track/VideoTrack.idl
-    html/track/VideoTrackList.idl
-
     inspector/CommandLineAPIHost.idl
     inspector/InspectorFrontendHost.idl
 
@@ -630,9 +575,6 @@
     page/PerformanceResourceTiming.idl
     page/PerformanceTiming.idl
     page/Screen.idl
-    page/UserMessageHandler.idl
-    page/UserMessageHandlersNamespace.idl
-    page/WebKitNamespace.idl
     page/WebKitPoint.idl
     page/WindowEventHandlers.idl
     page/WindowOrWorkerGlobalScope.idl
@@ -3161,6 +3103,8 @@
         html/track/TextTrackList.idl
         html/track/TrackEvent.idl
         html/track/VTTCue.idl
+        html/track/VTTRegion.idl
+        html/track/VTTRegionList.idl
         html/track/VideoTrack.idl
         html/track/VideoTrackList.idl
     )

Modified: releases/WebKitGTK/webkit-2.14/Source/WebCore/ChangeLog (205701 => 205702)


--- releases/WebKitGTK/webkit-2.14/Source/WebCore/ChangeLog	2016-09-09 07:42:56 UTC (rev 205701)
+++ releases/WebKitGTK/webkit-2.14/Source/WebCore/ChangeLog	2016-09-09 08:15:29 UTC (rev 205702)
@@ -1,3 +1,13 @@
+2016-09-05  Fujii Hironori  <[email protected]>
+
+        [CMake] Duplicated IDL files in WebCore_IDL_FILES
+        https://bugs.webkit.org/show_bug.cgi?id=161592
+
+        Reviewed by Darin Adler.
+
+        * CMakeLists.txt: Removed duplicated IDL files.
+        * DerivedSources.cpp: Added #if ENABLE(USER_MESSAGE_HANDLERS)
+
 2016-09-05  Zan Dobersek  <[email protected]>
 
         MediaPlayerPrivateGStreamerBase: improve build guards in nativeImageForCurrentTime()

Modified: releases/WebKitGTK/webkit-2.14/Source/WebCore/DerivedSources.cpp (205701 => 205702)


--- releases/WebKitGTK/webkit-2.14/Source/WebCore/DerivedSources.cpp	2016-09-09 07:42:56 UTC (rev 205701)
+++ releases/WebKitGTK/webkit-2.14/Source/WebCore/DerivedSources.cpp	2016-09-09 08:15:29 UTC (rev 205702)
@@ -630,8 +630,11 @@
 #include "JSUIEvent.cpp"
 #include "JSUIRequestEvent.cpp"
 #include "JSURLUtils.cpp"
+#if ENABLE(USER_MESSAGE_HANDLERS)
 #include "JSUserMessageHandler.cpp"
 #include "JSUserMessageHandlersNamespace.cpp"
+#include "JSWebKitNamespace.cpp"
+#endif
 #include "JSValidityState.cpp"
 #include "JSVideoPlaybackQuality.cpp"
 #include "JSVoidCallback.cpp"
@@ -643,7 +646,6 @@
 #include "JSWebKitCSSRegionRule.cpp"
 #include "JSWebKitCSSViewportRule.cpp"
 #include "JSWebKitNamedFlow.cpp"
-#include "JSWebKitNamespace.cpp"
 #include "JSWebKitPlaybackTargetAvailabilityEvent.cpp"
 #include "JSWebKitPoint.cpp"
 #include "JSWebKitSubtleCrypto.cpp"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to