Changeset 95356 in webkit


Ignore:
Timestamp:
Sep 16, 2011 7:42:16 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Depend on harfbuzz for OS=Android as well
https://bugs.webkit.org/show_bug.cgi?id=68239

Like GTK, Android depends on harfbuzz as well, so reflect that in
the project file. Furthermore, fix a compile error in PopupListBox.cpp
by explicitly including ctype.h, as isspace otherwise won't be declared.

Patch by Peter Beverloo <peter@chromium.org> on 2011-09-16
Reviewed by Steve Block.

  • WebCore.gyp/WebCore.gyp:
  • platform/chromium/PopupListBox.cpp:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95355 r95356  
     12011-09-16  Peter Beverloo  <peter@chromium.org>
     2
     3        Depend on harfbuzz for OS=Android as well
     4        https://bugs.webkit.org/show_bug.cgi?id=68239
     5
     6        Like GTK, Android depends on harfbuzz as well, so reflect that in
     7        the project file. Furthermore, fix a compile error in PopupListBox.cpp
     8        by explicitly including ctype.h, as isspace otherwise won't be declared.
     9
     10        Reviewed by Steve Block.
     11
     12        * WebCore.gyp/WebCore.gyp:
     13        * platform/chromium/PopupListBox.cpp:
     14
    1152011-09-16  Tony Chang  <tony@chromium.org>
    216
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r95184 r95356  
    13771377            ['include', 'platform/graphics/chromium/SimpleFontDataLinux\\.cpp$'],
    13781378          ],
     1379        }],
     1380        ['toolkit_uses_gtk==1 or OS=="android"', {
    13791381          'dependencies': [
    13801382            '<(chromium_src_dir)/third_party/harfbuzz/harfbuzz.gyp:harfbuzz',
  • trunk/Source/WebCore/platform/chromium/PopupListBox.cpp

    r93009 r95356  
    4848#include "StringTruncator.h"
    4949#include "TextRun.h"
     50#include <ctype.h>
    5051#include <limits>
    5152#include <wtf/CurrentTime.h>
Note: See TracChangeset for help on using the changeset viewer.