Changeset 65441 in webkit


Ignore:
Timestamp:
Aug 16, 2010 11:04:40 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-16 Alex Milowski <alex@milowski.com>

Reviewed by David Levin.

Added the configuration of the MathML related files.

  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:

2010-08-16 Alex Milowski <alex@milowski.com>

Reviewed by David Levin.

Added the ENABLE_MATHML=1 to the feature_defines.

  • features.gypi:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r65440 r65441  
     12010-08-16  Alex Milowski  <alex@milowski.com>
     2
     3        Reviewed by David Levin.
     4
     5        Added the configuration of the MathML related files.
     6
     7        * WebCore.gyp/WebCore.gyp:
     8        * WebCore.gypi:
     9
    1102010-08-16  Pavel Feldman  <pfeldman@chromium.org>
    211
  • trunk/WebCore/WebCore.gyp/WebCore.gyp

    r65353 r65441  
    128128      '../loader/archive',
    129129      '../loader/icon',
     130      '../mathml',
    130131      '../notifications',
    131132      '../page',
     
    400401            '<(SHARED_INTERMEDIATE_DIR)/webkit/MathMLNames.cpp',
    401402            '<(SHARED_INTERMEDIATE_DIR)/webkit/MathMLNames.h',
     403            '<(SHARED_INTERMEDIATE_DIR)/webkit/MathMLElementFactory.cpp',
     404            '<(SHARED_INTERMEDIATE_DIR)/webkit/MathMLElementFactory.h',
    402405          ],
    403406          'action': [
     
    408411            '<@(_inputs)',
    409412            '--',
     413            '--factory',
    410414            '--extraDefines', '<(feature_defines)'
    411415          ],
     
    422426            '../css/themeWinQuirks.css',
    423427            '../css/svg.css',
     428            '../css/mathml.css',
    424429            '../css/mediaControls.css',
    425430            '../css/mediaControlsChromium.css',
     
    734739        '<(SHARED_INTERMEDIATE_DIR)/webkit/XMLNames.cpp',
    735740        '<(SHARED_INTERMEDIATE_DIR)/webkit/SVGNames.cpp',
     741        '<(SHARED_INTERMEDIATE_DIR)/webkit/MathMLElementFactory.cpp',
    736742        '<(SHARED_INTERMEDIATE_DIR)/webkit/MathMLNames.cpp',
    737743
  • trunk/WebCore/WebCore.gypi

    r65417 r65441  
    19281928            'loader/loader.cpp',
    19291929            'loader/loader.h',
     1930            'mathml/MathMLElement.cpp',
     1931            'mathml/MathMLElement.h',
     1932            'mathml/MathMLInlineContainerElement.cpp',
     1933            'mathml/MathMLInlineContainerElement.h',
     1934            'mathml/MathMLMathElement.cpp',
     1935            'mathml/MathMLMathElement.h',
     1936            'mathml/MathMLTextElement.cpp',
     1937            'mathml/MathMLTextElement.h',
     1938            'mathml/RenderMathMLBlock.cpp',
     1939            'mathml/RenderMathMLBlock.h',
     1940            'mathml/RenderMathMLFenced.cpp',
     1941            'mathml/RenderMathMLFenced.h',
     1942            'mathml/RenderMathMLFraction.cpp',
     1943            'mathml/RenderMathMLFraction.h',
     1944            'mathml/RenderMathMLMath.cpp',
     1945            'mathml/RenderMathMLMath.h',
     1946            'mathml/RenderMathMLOperator.cpp',
     1947            'mathml/RenderMathMLOperator.h',
     1948            'mathml/RenderMathMLRoot.cpp',
     1949            'mathml/RenderMathMLRoot.h',
     1950            'mathml/RenderMathMLRow.cpp',
     1951            'mathml/RenderMathMLRow.h',
     1952            'mathml/RenderMathMLSquareRoot.cpp',
     1953            'mathml/RenderMathMLSquareRoot.h',
     1954            'mathml/RenderMathMLSubSup.cpp',
     1955            'mathml/RenderMathMLSubSup.h',
     1956            'mathml/RenderMathMLUnderOver.cpp',
     1957            'mathml/RenderMathMLUnderOver.h',
    19301958            'notifications/Notification.cpp',
    19311959            'notifications/Notification.h',
  • trunk/WebKit/chromium/ChangeLog

    r65439 r65441  
     12010-08-16  Alex Milowski  <alex@milowski.com>
     2
     3        Reviewed by David Levin.
     4
     5        Added the ENABLE_MATHML=1 to the feature_defines.
     6
     7        * features.gypi:
     8
    192010-08-16  Marcus Bulach  <bulach@chromium.org>
    210
  • trunk/WebKit/chromium/features.gypi

    r65168 r65441  
    6060        'ENABLE_JSC_MULTIPLE_THREADS=0',
    6161        'ENABLE_LINK_PREFETCH=1',
     62        'ENABLE_MATHML=0',
    6263        'ENABLE_METER_TAG=1',
    6364        'ENABLE_NOTIFICATIONS=1',
Note: See TracChangeset for help on using the changeset viewer.