Changeset 80393 in webkit


Ignore:
Timestamp:
Mar 4, 2011 4:55:55 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-03-04 Dimitri Glazkov <Dimitri Glazkov>

Reviewed by Adam Barth.

Add skeletal WebCore.gyp
https://bugs.webkit.org/show_bug.cgi?id=55802

  • Source/gyp/configure: Added WebCore.

2011-03-04 Dimitri Glazkov <Dimitri Glazkov>

Reviewed by Adam Barth.

Add skeletal WebCore.gyp
https://bugs.webkit.org/show_bug.cgi?id=55802

This doesn't yet build, but the basic structure is there.

  • WebCore.gypi: Added headers and include directories variables.
  • gyp/WebCore.gyp: Added.
Location:
trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r80388 r80393  
     12011-03-04  Dimitri Glazkov  <dglazkov@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Add skeletal WebCore.gyp
     6        https://bugs.webkit.org/show_bug.cgi?id=55802
     7
     8        * Source/gyp/configure: Added WebCore.
     9
    1102011-03-04  Adam Barth  <abarth@webkit.org>
    211
  • trunk/Source/WebCore/ChangeLog

    r80389 r80393  
     12011-03-04  Dimitri Glazkov  <dglazkov@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Add skeletal WebCore.gyp
     6        https://bugs.webkit.org/show_bug.cgi?id=55802
     7
     8        This doesn't yet build, but the basic structure is there.
     9
     10        * WebCore.gypi: Added headers and include directories variables.
     11        * gyp/WebCore.gyp: Added.
     12
    1132011-03-04  Adam Barth  <abarth@webkit.org>
    214
  • trunk/Source/WebCore/WebCore.gypi

    r80367 r80393  
    11{
    22    'variables': {
     3        'webcore_include_dirs': [
     4          '.',
     5          'accessibility',
     6          'accessibility/chromium',
     7          'bindings',
     8          'bindings/generic',
     9          'bindings/v8',
     10          'bindings/v8/custom',
     11          'bindings/v8/specialization',
     12          'bridge',
     13          'bridge/jni',
     14          'bridge/jni/v8',
     15          'css',
     16          'dom',
     17          'dom/default',
     18          'editing',
     19          'fileapi',
     20          'history',
     21          'html',
     22          'html/canvas',
     23          'html/parser',
     24          'html/shadow',
     25          'inspector',
     26          'loader',
     27          'loader/appcache',
     28          'loader/archive',
     29          'loader/cache',
     30          'loader/icon',
     31          'mathml',
     32          'notifications',
     33          'page',
     34          'page/animation',
     35          'page/chromium',
     36          'platform',
     37          'platform/animation',
     38          'platform/audio',
     39          'platform/audio/chromium',
     40          'platform/chromium',
     41          'platform/graphics',
     42          'platform/graphics/chromium',
     43          'platform/graphics/filters',
     44          'platform/graphics/gpu',
     45          'platform/graphics/opentype',
     46          'platform/graphics/skia',
     47          'platform/graphics/transforms',
     48          'platform/image-decoders',
     49          'platform/image-decoders/bmp',
     50          'platform/image-decoders/gif',
     51          'platform/image-decoders/ico',
     52          'platform/image-decoders/jpeg',
     53          'platform/image-decoders/png',
     54          'platform/image-decoders/skia',
     55          'platform/image-decoders/xbm',
     56          'platform/image-decoders/webp',
     57          'platform/image-encoders/skia',
     58          'platform/mock',
     59          'platform/network',
     60          'platform/network/chromium',
     61          'platform/sql',
     62          'platform/text',
     63          'platform/text/transcoder',
     64          'plugins',
     65          'plugins/chromium',
     66          'rendering',
     67          'rendering/style',
     68          'rendering/svg',
     69          'storage',
     70          'storage/chromium',
     71          'svg',
     72          'svg/animation',
     73          'svg/graphics',
     74          'svg/graphics/filters',
     75          'svg/properties',
     76          'thirdparty/glu',
     77          'webaudio',
     78          'websockets',
     79          'workers',
     80          'xml',
     81        ],
     82        # These headers are part of WebCore's public API in the Apple Mac build.
     83        'webcore_publicheader_files': [
     84          #FIXME: Add headers.
     85        ],
     86        # These headers are part of WebCore's private API in the Apple Mac build.
     87        'webcore_privateheader_files': [
     88          #FIXME: Add headers.
     89        ],
    390        'webcore_bindings_idl_files': [
    491            'css/CSSCharsetRule.idl',
  • trunk/Source/gyp/configure

    r80388 r80393  
    3636    "JavaScriptGlue",
    3737    "JavaScriptCore",
     38    "WebCore",
    3839]
    3940
Note: See TracChangeset for help on using the changeset viewer.