Changeset 70287 in webkit


Ignore:
Timestamp:
Oct 21, 2010 8:39:52 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-21 Kwang Yul Seo <skyul@company100.net>

Reviewed by James Robinson.

Make sure skia is not Chromium specific
https://bugs.webkit.org/show_bug.cgi?id=39672

GlyphPageTreeNodeLinux does not depend on Linux or Chromium.
Move GlyphPageTreeNodeLinux to platform/graphics/skia and rename it to
GlyphPageTreeNodeSkia.cpp so that other ports can use it.

  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:
  • platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp: Removed.
  • platform/graphics/skia/GlyphPageTreeNodeSkia.cpp: Added.
Location:
trunk/WebCore
Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70283 r70287  
     12010-10-21  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by James Robinson.
     4
     5        Make sure skia is not Chromium specific
     6        https://bugs.webkit.org/show_bug.cgi?id=39672
     7
     8        GlyphPageTreeNodeLinux does not depend on Linux or Chromium.
     9        Move GlyphPageTreeNodeLinux to platform/graphics/skia and rename it to
     10        GlyphPageTreeNodeSkia.cpp so that other ports can use it.
     11
     12        * WebCore.gyp/WebCore.gyp:
     13        * WebCore.gypi:
     14        * platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp: Removed.
     15        * platform/graphics/skia/GlyphPageTreeNodeSkia.cpp: Added.
     16
    1172010-10-21  Ryosuke Niwa  <rniwa@webkit.org>
    218
  • trunk/WebCore/WebCore.gyp/WebCore.gyp

    r70136 r70287  
    10781078            ['include', 'platform/graphics/chromium/FontLinux\\.cpp$'],
    10791079            ['include', 'platform/graphics/chromium/FontPlatformDataLinux\\.cpp$'],
    1080             ['include', 'platform/graphics/chromium/GlyphPageTreeNodeLinux\\.cpp$'],
    10811080            ['include', 'platform/graphics/chromium/SimpleFontDataLinux\\.cpp$'],
    10821081          ],
     
    12071206          'sources/': [
    12081207            ['exclude', 'Posix\\.cpp$'],
     1208
     1209            # The Chromium Win currently uses GlyphPageTreeNodeChromiumWin.cpp from
     1210            # platform/graphics/chromium, included by regex above, instead.
     1211            ['exclude', 'platform/graphics/skia/GlyphPageTreeNodeSkia\\.cpp$']
    12091212          ],
    12101213        }],
  • trunk/WebCore/WebCore.gypi

    r70282 r70287  
    24212421            'platform/graphics/chromium/GLES2Canvas.h',
    24222422            'platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp',
    2423             'platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp',
    24242423            'platform/graphics/chromium/GraphicsLayerChromium.cpp',
    24252424            'platform/graphics/chromium/GraphicsLayerChromium.h',
     
    26162615            'platform/graphics/skia/FontCustomPlatformData.cpp',
    26172616            'platform/graphics/skia/FontCustomPlatformData.h',
     2617            'platform/graphics/skia/GlyphPageTreeNodeSkia.cpp',
    26182618            'platform/graphics/skia/GradientSkia.cpp',
    26192619            'platform/graphics/skia/GraphicsContextPlatformPrivate.h',
Note: See TracChangeset for help on using the changeset viewer.