summaryrefslogtreecommitdiffstats
path: root/WebCore/WebCore.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/WebCore.gypi')
-rw-r--r--WebCore/WebCore.gypi121
1 files changed, 82 insertions, 39 deletions
diff --git a/WebCore/WebCore.gypi b/WebCore/WebCore.gypi
index 263bde2..91d7eda 100644
--- a/WebCore/WebCore.gypi
+++ b/WebCore/WebCore.gypi
@@ -82,15 +82,15 @@
'dom/WheelEvent.idl',
'html/Blob.idl',
'html/canvas/WebGLActiveInfo.idl',
- 'html/canvas/WebGLArray.idl',
- 'html/canvas/WebGLArrayBuffer.idl',
+ 'html/canvas/ArrayBufferView.idl',
+ 'html/canvas/ArrayBuffer.idl',
'html/canvas/WebGLBuffer.idl',
- 'html/canvas/WebGLByteArray.idl',
+ 'html/canvas/Int8Array.idl',
'html/canvas/WebGLContextAttributes.idl',
- 'html/canvas/WebGLFloatArray.idl',
+ 'html/canvas/FloatArray.idl',
'html/canvas/WebGLFramebuffer.idl',
'html/canvas/CanvasGradient.idl',
- 'html/canvas/WebGLIntArray.idl',
+ 'html/canvas/Int32Array.idl',
'html/canvas/CanvasPattern.idl',
'html/canvas/CanvasPixelArray.idl',
'html/canvas/WebGLProgram.idl',
@@ -99,11 +99,11 @@
'html/canvas/CanvasRenderingContext2D.idl',
'html/canvas/WebGLRenderingContext.idl',
'html/canvas/WebGLShader.idl',
- 'html/canvas/WebGLShortArray.idl',
+ 'html/canvas/Int16Array.idl',
'html/canvas/WebGLUniformLocation.idl',
- 'html/canvas/WebGLUnsignedByteArray.idl',
- 'html/canvas/WebGLUnsignedIntArray.idl',
- 'html/canvas/WebGLUnsignedShortArray.idl',
+ 'html/canvas/Uint8Array.idl',
+ 'html/canvas/Uint32Array.idl',
+ 'html/canvas/Uint16Array.idl',
'html/canvas/WebGLTexture.idl',
'html/DataGridColumn.idl',
'html/DataGridColumnList.idl',
@@ -111,6 +111,7 @@
'html/File.idl',
'html/FileError.idl',
'html/FileList.idl',
+ 'html/FileReader.idl',
'html/HTMLAllCollection.idl',
'html/HTMLAnchorElement.idl',
'html/HTMLAppletElement.idl',
@@ -157,6 +158,7 @@
'html/HTMLMediaElement.idl',
'html/HTMLMenuElement.idl',
'html/HTMLMetaElement.idl',
+ 'html/HTMLMeterElement.idl',
'html/HTMLModElement.idl',
'html/HTMLOListElement.idl',
'html/HTMLObjectElement.idl',
@@ -217,11 +219,17 @@
'plugins/MimeTypeArray.idl',
'plugins/Plugin.idl',
'plugins/PluginArray.idl',
+ 'storage/IDBAny.idl',
'storage/Database.idl',
'storage/DatabaseCallback.idl',
+ 'storage/DatabaseSync.idl',
'storage/IDBDatabaseError.idl',
'storage/IDBDatabaseException.idl',
'storage/IDBDatabaseRequest.idl',
+ 'storage/IDBErrorEvent.idl',
+ 'storage/IDBEvent.idl',
+ 'storage/IDBRequest.idl',
+ 'storage/IDBSuccessEvent.idl',
'storage/IndexedDatabaseRequest.idl',
'storage/SQLError.idl',
'storage/SQLResultSet.idl',
@@ -231,6 +239,8 @@
'storage/SQLTransaction.idl',
'storage/SQLTransactionCallback.idl',
'storage/SQLTransactionErrorCallback.idl',
+ 'storage/SQLTransactionSync.idl',
+ 'storage/SQLTransactionSyncCallback.idl',
'storage/Storage.idl',
'storage/StorageEvent.idl',
'websockets/WebSocket.idl',
@@ -399,6 +409,7 @@
'svg/SVGUseElement.idl',
'svg/SVGViewElement.idl',
'svg/SVGViewSpec.idl',
+ 'svg/SVGVKernElement.idl',
'svg/SVGZoomAndPan.idl',
'svg/SVGZoomEvent.idl',
],
@@ -507,6 +518,7 @@
'bindings/js/JSCustomXPathNSResolver.cpp',
'bindings/js/JSCustomXPathNSResolver.h',
'bindings/js/JSDatabaseCustom.cpp',
+ 'bindings/js/JSDatabaseSyncCustom.cpp',
'bindings/js/JSDataGridColumnListCustom.cpp',
'bindings/js/JSDataGridDataSource.cpp',
'bindings/js/JSDataGridDataSource.h',
@@ -601,6 +613,7 @@
'bindings/js/JSScriptProfileNodeCustom.cpp',
'bindings/js/JSSQLResultSetRowListCustom.cpp',
'bindings/js/JSSQLTransactionCustom.cpp',
+ 'bindings/js/JSSQLTransactionSyncCustom.cpp',
'bindings/js/JSStorageCustom.cpp',
'bindings/js/JSStorageCustom.h',
'bindings/js/JSStyleSheetCustom.cpp',
@@ -680,18 +693,19 @@
'bindings/v8/ChildThreadDOMData.h',
'bindings/v8/custom/V8AttrCustom.cpp',
'bindings/v8/custom/V8CanvasPixelArrayCustom.cpp',
- 'bindings/v8/custom/V8WebGLArrayCustom.h',
- 'bindings/v8/custom/V8WebGLArrayCustom.cpp',
- 'bindings/v8/custom/V8WebGLArrayBufferCustom.cpp',
- 'bindings/v8/custom/V8WebGLByteArrayCustom.cpp',
- 'bindings/v8/custom/V8WebGLIntArrayCustom.cpp',
- 'bindings/v8/custom/V8WebGLFloatArrayCustom.cpp',
- 'bindings/v8/custom/V8WebGLShortArrayCustom.cpp',
- 'bindings/v8/custom/V8WebGLUnsignedByteArrayCustom.cpp',
- 'bindings/v8/custom/V8WebGLUnsignedIntArrayCustom.cpp',
- 'bindings/v8/custom/V8WebGLUnsignedShortArrayCustom.cpp',
+ 'bindings/v8/custom/V8ArrayBufferViewCustom.h',
+ 'bindings/v8/custom/V8ArrayBufferViewCustom.cpp',
+ 'bindings/v8/custom/V8ArrayBufferCustom.cpp',
+ 'bindings/v8/custom/V8Int8ArrayCustom.cpp',
+ 'bindings/v8/custom/V8Int32ArrayCustom.cpp',
+ 'bindings/v8/custom/V8FloatArrayCustom.cpp',
+ 'bindings/v8/custom/V8Int16ArrayCustom.cpp',
+ 'bindings/v8/custom/V8Uint8ArrayCustom.cpp',
+ 'bindings/v8/custom/V8Uint32ArrayCustom.cpp',
+ 'bindings/v8/custom/V8Uint16ArrayCustom.cpp',
'bindings/v8/custom/V8CanvasRenderingContext2DCustom.cpp',
'bindings/v8/custom/V8WebGLRenderingContextCustom.cpp',
+ 'bindings/v8/custom/V8BindingMacros.h',
'bindings/v8/custom/V8ClipboardCustom.cpp',
'bindings/v8/custom/V8ConsoleCustom.cpp',
'bindings/v8/custom/V8CoordinatesCustom.cpp',
@@ -699,7 +713,6 @@
'bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp',
'bindings/v8/custom/V8CSSStyleSheetCustom.cpp',
'bindings/v8/custom/V8CSSValueCustom.cpp',
- 'bindings/v8/custom/V8CustomIDBCallbacks.h',
'bindings/v8/custom/V8CustomEventListener.cpp',
'bindings/v8/custom/V8CustomEventListener.h',
'bindings/v8/custom/V8CustomPositionCallback.cpp',
@@ -712,6 +725,7 @@
'bindings/v8/custom/V8CustomXPathNSResolver.cpp',
'bindings/v8/custom/V8CustomXPathNSResolver.h',
'bindings/v8/custom/V8DatabaseCustom.cpp',
+ 'bindings/v8/custom/V8DatabaseSyncCustom.cpp',
'bindings/v8/custom/V8DataGridColumnListCustom.cpp',
'bindings/v8/custom/V8DedicatedWorkerContextCustom.cpp',
'bindings/v8/custom/V8DocumentLocationCustom.cpp',
@@ -744,7 +758,7 @@
'bindings/v8/custom/V8HTMLPlugInElementCustom.cpp',
'bindings/v8/custom/V8HTMLSelectElementCustom.cpp',
'bindings/v8/custom/V8HTMLSelectElementCustom.h',
- 'bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp',
+ 'bindings/v8/custom/V8IDBAnyCustom.cpp',
'bindings/v8/custom/V8InjectedScriptHostCustom.cpp',
'bindings/v8/custom/V8InspectorFrontendHostCustom.cpp',
'bindings/v8/custom/V8JavaScriptCallFrameCustom.cpp',
@@ -765,6 +779,7 @@
'bindings/v8/custom/V8StorageCustom.cpp',
'bindings/v8/custom/V8SQLResultSetRowListCustom.cpp',
'bindings/v8/custom/V8SQLTransactionCustom.cpp',
+ 'bindings/v8/custom/V8SQLTransactionSyncCustom.cpp',
'bindings/v8/custom/V8SVGDocumentCustom.cpp',
'bindings/v8/custom/V8SVGElementCustom.cpp',
'bindings/v8/custom/V8SVGLengthCustom.cpp',
@@ -1360,18 +1375,18 @@
'history/PageCache.h',
'html/Blob.cpp',
'html/Blob.h',
- 'html/canvas/WebGLArray.cpp',
- 'html/canvas/WebGLArray.h',
- 'html/canvas/WebGLArrayBuffer.cpp',
- 'html/canvas/WebGLArrayBuffer.h',
+ 'html/canvas/ArrayBufferView.cpp',
+ 'html/canvas/ArrayBufferView.h',
+ 'html/canvas/ArrayBuffer.cpp',
+ 'html/canvas/ArrayBuffer.h',
'html/canvas/WebGLBuffer.cpp',
'html/canvas/WebGLBuffer.h',
- 'html/canvas/WebGLByteArray.cpp',
- 'html/canvas/WebGLByteArray.h',
+ 'html/canvas/Int8Array.cpp',
+ 'html/canvas/Int8Array.h',
'html/canvas/WebGLContextAttributes.cpp',
'html/canvas/WebGLContextAttributes.h',
- 'html/canvas/WebGLFloatArray.cpp',
- 'html/canvas/WebGLFloatArray.h',
+ 'html/canvas/FloatArray.cpp',
+ 'html/canvas/FloatArray.h',
'html/canvas/WebGLFramebuffer.cpp',
'html/canvas/WebGLFramebuffer.h',
'html/canvas/WebGLGetInfo.cpp',
@@ -1380,8 +1395,9 @@
'html/canvas/CanvasContextAttributes.h',
'html/canvas/CanvasGradient.cpp',
'html/canvas/CanvasGradient.h',
- 'html/canvas/WebGLIntArray.cpp',
- 'html/canvas/WebGLIntArray.h',
+ 'html/canvas/Int32Array.cpp',
+ 'html/canvas/Int32Array.h',
+ 'html/canvas/IntegralTypedArrayBase.h',
'html/canvas/CanvasObject.cpp',
'html/canvas/CanvasObject.h',
'html/canvas/CanvasPattern.cpp',
@@ -1400,20 +1416,21 @@
'html/canvas/WebGLRenderingContext.h',
'html/canvas/WebGLShader.cpp',
'html/canvas/WebGLShader.h',
- 'html/canvas/WebGLShortArray.cpp',
- 'html/canvas/WebGLShortArray.h',
+ 'html/canvas/Int16Array.cpp',
+ 'html/canvas/Int16Array.h',
'html/canvas/CanvasStyle.cpp',
'html/canvas/CanvasStyle.h',
'html/canvas/WebGLTexture.cpp',
'html/canvas/WebGLTexture.h',
+ 'html/canvas/TypedArrayBase.h',
'html/canvas/WebGLUniformLocation.cpp',
'html/canvas/WebGLUniformLocation.h',
- 'html/canvas/WebGLUnsignedByteArray.cpp',
- 'html/canvas/WebGLUnsignedByteArray.h',
- 'html/canvas/WebGLUnsignedIntArray.cpp',
- 'html/canvas/WebGLUnsignedIntArray.h',
- 'html/canvas/WebGLUnsignedShortArray.cpp',
- 'html/canvas/WebGLUnsignedShortArray.h',
+ 'html/canvas/Uint8Array.cpp',
+ 'html/canvas/Uint8Array.h',
+ 'html/canvas/Uint32Array.cpp',
+ 'html/canvas/Uint32Array.h',
+ 'html/canvas/Uint16Array.cpp',
+ 'html/canvas/Uint16Array.h',
'html/CollectionCache.cpp',
'html/CollectionCache.h',
'html/CollectionType.h',
@@ -1548,6 +1565,8 @@
'html/HTMLMenuElement.h',
'html/HTMLMetaElement.cpp',
'html/HTMLMetaElement.h',
+ 'html/HTMLMeterElement.cpp',
+ 'html/HTMLMeterElement.h',
'html/HTMLModElement.cpp',
'html/HTMLModElement.h',
'html/HTMLNameCollection.cpp',
@@ -1709,6 +1728,7 @@
'loader/win/FrameLoaderWin.cpp',
'loader/Cache.cpp',
'loader/Cache.h',
+ 'loader/CachedMetadata.h',
'loader/CachePolicy.h',
'loader/CachedCSSStyleSheet.cpp',
'loader/CachedCSSStyleSheet.h',
@@ -3124,6 +3144,8 @@
'rendering/RenderMediaControlsChromium.h',
'rendering/RenderMenuList.cpp',
'rendering/RenderMenuList.h',
+ 'rendering/RenderMeter.cpp',
+ 'rendering/RenderMeter.h',
'rendering/RenderObject.cpp',
'rendering/RenderObject.h',
'rendering/RenderObjectChildList.cpp',
@@ -3275,6 +3297,8 @@
'rendering/SVGShadowTreeElements.cpp',
'rendering/SVGShadowTreeElements.h',
'rendering/SVGTextChunkLayoutInfo.h',
+ 'rendering/SVGTextLayoutUtilities.cpp',
+ 'rendering/SVGTextLayoutUtilities.h',
'rendering/TableLayout.h',
'rendering/TextControlInnerElements.cpp',
'rendering/TextControlInnerElements.h',
@@ -3282,6 +3306,8 @@
'rendering/TransformState.h',
'rendering/break_lines.cpp',
'rendering/break_lines.h',
+ 'storage/AbstractDatabase.cpp',
+ 'storage/AbstractDatabase.h',
'storage/ChangeVersionWrapper.cpp',
'storage/ChangeVersionWrapper.h',
'storage/chromium/DatabaseObserver.h',
@@ -3305,6 +3331,8 @@
'storage/DatabaseTracker.cpp',
'storage/DatabaseTracker.h',
'storage/DatabaseTrackerClient.h',
+ 'storage/IDBAny.cpp',
+ 'storage/IDBAny.h',
'storage/IDBCallbacks.h',
'storage/IDBDatabase.h',
'storage/IDBDatabase.cpp',
@@ -3312,6 +3340,14 @@
'storage/IDBDatabaseException.h',
'storage/IDBDatabaseRequest.cpp',
'storage/IDBDatabaseRequest.h',
+ 'storage/IDBEvent.cpp',
+ 'storage/IDBEvent.h',
+ 'storage/IDBErrorEvent.cpp',
+ 'storage/IDBErrorEvent.h',
+ 'storage/IDBRequest.cpp',
+ 'storage/IDBRequest.h',
+ 'storage/IDBSuccessEvent.cpp',
+ 'storage/IDBSuccessEvent.h',
'storage/IndexedDatabase.cpp',
'storage/IndexedDatabase.h',
'storage/IndexedDatabaseImpl.cpp',
@@ -3382,6 +3418,8 @@
'svg/graphics/filters/SVGFEFlood.h',
'svg/graphics/filters/SVGFEImage.cpp',
'svg/graphics/filters/SVGFEImage.h',
+ 'svg/graphics/filters/SVGFELighting.cpp',
+ 'svg/graphics/filters/SVGFELighting.h',
'svg/graphics/filters/SVGFEMerge.cpp',
'svg/graphics/filters/SVGFEMerge.h',
'svg/graphics/filters/SVGFEMorphology.cpp',
@@ -3679,6 +3717,8 @@
'svg/SVGViewElement.h',
'svg/SVGViewSpec.cpp',
'svg/SVGViewSpec.h',
+ 'svg/SVGVKernElement.cpp',
+ 'svg/SVGVKernElement.h',
'svg/SVGZoomAndPan.cpp',
'svg/SVGZoomAndPan.h',
'svg/SVGZoomEvent.cpp',
@@ -3821,6 +3861,7 @@
'inspector/front-end/ElementsTreeOutline.js',
'inspector/front-end/EventListenersSidebarPane.js',
'inspector/front-end/FontView.js',
+ 'inspector/front-end/HelpScreen.js',
'inspector/front-end/ImageView.js',
'inspector/front-end/InspectorBackendStub.js',
'inspector/front-end/InspectorFrontendHostStub.js',
@@ -3850,6 +3891,7 @@
'inspector/front-end/Script.js',
'inspector/front-end/ScriptsPanel.js',
'inspector/front-end/ScriptView.js',
+ 'inspector/front-end/ShortcutsHelp.js',
'inspector/front-end/Section.js',
'inspector/front-end/Settings.js',
'inspector/front-end/SidebarPane.js',
@@ -3881,6 +3923,7 @@
'inspector/front-end/WelcomeView.js',
'inspector/front-end/WorkersSidebarPane.js',
'inspector/front-end/audits.css',
+ 'inspector/front-end/helpScreen.css',
'inspector/front-end/inspector.css',
'inspector/front-end/inspectorSyntaxHighlight.css',
'inspector/front-end/popover.css',