Changeset 67918 in webkit


Ignore:
Timestamp:
Sep 20, 2010 8:45:15 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-09-20 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

GGlyphPageTreeNodeLinux does not depend on Linux or Chromium.
Move GGlyphPageTreeNodeLinux 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

    r67917 r67918  
     12010-09-20  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        GGlyphPageTreeNodeLinux does not depend on Linux or Chromium.
     9        Move GGlyphPageTreeNodeLinux 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-09-20  Kinuko Yasuda  <kinuko@chromium.org>
    218
  • trunk/WebCore/WebCore.gyp/WebCore.gyp

    r67751 r67918  
    10491049            ['include', 'platform/graphics/chromium/FontLinux\\.cpp$'],
    10501050            ['include', 'platform/graphics/chromium/FontPlatformDataLinux\\.cpp$'],
    1051             ['include', 'platform/graphics/chromium/GlyphPageTreeNodeLinux\\.cpp$'],
    10521051            ['include', 'platform/graphics/chromium/SimpleFontDataLinux\\.cpp$'],
    10531052          ],
     
    12981297          'sources/': [
    12991298            ['exclude', 'Posix\\.cpp$'],
     1299            # The Chromium Win uses GlyphPageTreeNodeChromiumWin.cpp from platform/graphics/chromium,
     1300            # included by regex above, instead.
     1301            ['exclude', 'platform/graphics/skia/GlyphPageTreeNodeSkia\\.cpp$'],
    13001302            ['include', '/opentype/'],
    13011303            ['include', '/ScrollAnimatorWin\\.cpp$'],
  • trunk/WebCore/WebCore.gypi

    r67898 r67918  
    23192319            'platform/graphics/chromium/GLES2Canvas.h',
    23202320            'platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp',
    2321             'platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp',
    23222321            'platform/graphics/chromium/GraphicsLayerChromium.cpp',
    23232322            'platform/graphics/chromium/GraphicsLayerChromium.h',
     
    24872486            'platform/graphics/skia/FontCustomPlatformData.cpp',
    24882487            'platform/graphics/skia/FontCustomPlatformData.h',
     2488            'platform/graphics/skia/GlyphPageTreeNodeSkia.cpp',
    24892489            'platform/graphics/skia/GradientSkia.cpp',
    24902490            'platform/graphics/skia/GraphicsContextPlatformPrivate.h',
Note: See TracChangeset for help on using the changeset viewer.