Changeset 61863 in webkit


Ignore:
Timestamp:
Jun 25, 2010 8:00:25 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-06-25 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Simon Hausmann.

[Qt] WebGL: missing file
https://bugs.webkit.org/show_bug.cgi?id=40998

Added a missing file to WebCore.pro

No new tests; build fix

  • WebCore.pro:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r61862 r61863  
     12010-06-25  No'am Rosenthal  <noam.rosenthal@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] WebGL: missing file
     6        https://bugs.webkit.org/show_bug.cgi?id=40998
     7
     8        Added a missing file to WebCore.pro
     9
     10        No new tests; build fix
     11
     12        * WebCore.pro:
     13
    1142010-06-25  Adam Roben  <aroben@apple.com>
    215
  • trunk/WebCore/WebCore.pro

    r61818 r61863  
    29302930tobe|!tobe: QT += opengl
    29312931HEADERS += \
    2932         bindings/js/JSArrayBufferViewHelper.h \
    2933         html/canvas/CanvasContextAttributes.h \
    2934         html/canvas/CanvasObject.h \
    2935         html/canvas/WebGLActiveInfo.h \
    2936         html/canvas/ArrayBuffer.h \
    2937         html/canvas/ArrayBufferView.h \
    2938         html/canvas/WebGLBuffer.h \
    2939         html/canvas/Int8Array.h \
    2940         html/canvas/WebGLContextAttributes.h \
    2941         html/canvas/Float32Array.h \
    2942         html/canvas/WebGLFramebuffer.h \
    2943         html/canvas/WebGLGetInfo.h \
    2944         html/canvas/Int32Array.h \
    2945         html/canvas/WebGLProgram.h \
    2946         html/canvas/WebGLRenderbuffer.h \
    2947         html/canvas/WebGLRenderingContext.h \
    2948         html/canvas/WebGLShader.h \
    2949         html/canvas/Int16Array.h \
    2950         html/canvas/WebGLTexture.h \
    2951         html/canvas/WebGLUniformLocation.h \
    2952         html/canvas/Uint8Array.h \
    2953         html/canvas/Uint32Array.h \
    2954         html/canvas/Uint16Array.h \
    2955     platform/graphics/GraphicsContext3D.h
     2932        bindings/js/JSArrayBufferViewHelper.h \
     2933        html/canvas/CanvasContextAttributes.h \
     2934        html/canvas/CanvasObject.h \
     2935        html/canvas/WebGLActiveInfo.h \
     2936        html/canvas/ArrayBuffer.h \
     2937        html/canvas/ArrayBufferView.h \
     2938        html/canvas/WebGLBuffer.h \
     2939        html/canvas/Int8Array.h \
     2940        html/canvas/WebGLContextAttributes.h \
     2941        html/canvas/Float32Array.h \
     2942        html/canvas/WebGLFramebuffer.h \
     2943        html/canvas/WebGLGetInfo.h \
     2944        html/canvas/Int32Array.h \
     2945        html/canvas/WebGLProgram.h \
     2946        html/canvas/WebGLRenderbuffer.h \
     2947        html/canvas/WebGLRenderingContext.h \
     2948        html/canvas/WebGLShader.h \
     2949        html/canvas/Int16Array.h \
     2950        html/canvas/WebGLTexture.h \
     2951        html/canvas/WebGLUniformLocation.h \
     2952        html/canvas/Uint8Array.h \
     2953        html/canvas/Uint32Array.h \
     2954        html/canvas/Uint16Array.h \
     2955        platform/graphics/GraphicsContext3D.h
    29562956
    29572957SOURCES += \
    2958         bindings/js/JSArrayBufferViewCustom.cpp \
    2959         bindings/js/JSInt8ArrayCustom.cpp \
    2960         bindings/js/JSFloat32ArrayCustom.cpp \
    2961         bindings/js/JSInt32ArrayCustom.cpp \
    2962         bindings/js/JSWebGLRenderingContextCustom.cpp \
    2963         bindings/js/JSInt16ArrayCustom.cpp \
    2964         bindings/js/JSUint8ArrayCustom.cpp \
    2965         bindings/js/JSUint32ArrayCustom.cpp \
    2966         bindings/js/JSUint16ArrayCustom.cpp \
    2967         html/canvas/CanvasContextAttributes.cpp \
    2968     html/canvas/CanvasObject.cpp \
    2969         html/canvas/ArrayBuffer.cpp \
    2970         html/canvas/ArrayBufferView.cpp \
    2971         html/canvas/WebGLBuffer.cpp \
    2972         html/canvas/Int8Array.cpp \
    2973         html/canvas/WebGLContextAttributes.cpp \
    2974         html/canvas/Float32Array.cpp \
    2975         html/canvas/WebGLFramebuffer.cpp \
    2976         html/canvas/WebGLGetInfo.cpp \
    2977         html/canvas/Int32Array.cpp \
    2978         html/canvas/WebGLProgram.cpp \
    2979         html/canvas/WebGLRenderbuffer.cpp \
    2980         html/canvas/WebGLRenderingContext.cpp \
    2981         html/canvas/WebGLShader.cpp \
    2982         html/canvas/Int16Array.cpp \
    2983         html/canvas/WebGLTexture.cpp \
    2984         html/canvas/WebGLUniformLocation.cpp \
    2985         html/canvas/Uint8Array.cpp \
    2986         html/canvas/Uint32Array.cpp \
    2987         html/canvas/Uint16Array.cpp \
    2988     platform/graphics/GraphicsContext3D.cpp \
    2989     platform/graphics/qt/GraphicsContext3DQt.cpp \
     2958        bindings/js/JSArrayBufferCustom.cpp \
     2959        bindings/js/JSArrayBufferViewCustom.cpp \
     2960        bindings/js/JSInt8ArrayCustom.cpp \
     2961        bindings/js/JSFloat32ArrayCustom.cpp \
     2962        bindings/js/JSInt32ArrayCustom.cpp \
     2963        bindings/js/JSWebGLRenderingContextCustom.cpp \
     2964        bindings/js/JSInt16ArrayCustom.cpp \
     2965        bindings/js/JSUint8ArrayCustom.cpp \
     2966        bindings/js/JSUint32ArrayCustom.cpp \
     2967        bindings/js/JSUint16ArrayCustom.cpp \
     2968        html/canvas/CanvasContextAttributes.cpp \
     2969        html/canvas/CanvasObject.cpp \
     2970        html/canvas/ArrayBuffer.cpp \
     2971        html/canvas/ArrayBufferView.cpp \
     2972        html/canvas/WebGLBuffer.cpp \
     2973        html/canvas/Int8Array.cpp \
     2974        html/canvas/WebGLContextAttributes.cpp \
     2975        html/canvas/Float32Array.cpp \
     2976        html/canvas/WebGLFramebuffer.cpp \
     2977        html/canvas/WebGLGetInfo.cpp \
     2978        html/canvas/Int32Array.cpp \
     2979        html/canvas/WebGLProgram.cpp \
     2980        html/canvas/WebGLRenderbuffer.cpp \
     2981        html/canvas/WebGLRenderingContext.cpp \
     2982        html/canvas/WebGLShader.cpp \
     2983        html/canvas/Int16Array.cpp \
     2984        html/canvas/WebGLTexture.cpp \
     2985        html/canvas/WebGLUniformLocation.cpp \
     2986        html/canvas/Uint8Array.cpp \
     2987        html/canvas/Uint32Array.cpp \
     2988        html/canvas/Uint16Array.cpp \
     2989        platform/graphics/GraphicsContext3D.cpp \
     2990        platform/graphics/qt/GraphicsContext3DQt.cpp \
    29902991
    29912992}
Note: See TracChangeset for help on using the changeset viewer.