Changeset 51858 in webkit


Ignore:
Timestamp:
Dec 8, 2009 8:55:56 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-08 Steve Block <steveblock@google.com>

Reviewed by Adam Barth.

[Android] Adds Makefiles for Android port.
https://bugs.webkit.org/show_bug.cgi?id=31325

  • Android.mk: Added.

2009-12-08 Steve Block <steveblock@google.com>

Reviewed by Adam Barth.

[Android] Adds Makefiles for Android port.
https://bugs.webkit.org/show_bug.cgi?id=31325

  • Android.mk: Added.
  • Android.v8.wtf.mk: Added.

2009-12-08 Steve Block <steveblock@google.com>

Reviewed by Adam Barth.

[Android] Adds Makefiles for Android port.
https://bugs.webkit.org/show_bug.cgi?id=31325

Build system change only. No tests possible.

  • Android.derived.jscbindings.mk: Added.
  • Android.derived.mk: Added.
  • Android.jscbindings.mk: Added.
  • Android.mk: Added.
  • WebCorePrefix.h: Modified. Sets up some flags and adds a header required for building on Android.
Location:
trunk
Files:
7 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r51856 r51858  
     12009-12-08  Steve Block  <steveblock@google.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        [Android] Adds Makefiles for Android port.
     6        https://bugs.webkit.org/show_bug.cgi?id=31325
     7
     8        * Android.mk: Added.
     9
    1102009-12-08  Christian Dywan  <christian@twotoasts.de>
    211
  • trunk/JavaScriptCore/ChangeLog

    r51813 r51858  
     12009-12-08  Steve Block  <steveblock@google.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        [Android] Adds Makefiles for Android port.
     6        https://bugs.webkit.org/show_bug.cgi?id=31325
     7
     8        * Android.mk: Added.
     9        * Android.v8.wtf.mk: Added.
     10
    1112009-12-07  Dmitry Titov  <dimich@chromium.org>
    212
  • trunk/WebCore/ChangeLog

    r51856 r51858  
     12009-12-08  Steve Block  <steveblock@google.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        [Android] Adds Makefiles for Android port.
     6        https://bugs.webkit.org/show_bug.cgi?id=31325
     7
     8        Build system change only. No tests possible.
     9
     10        * Android.derived.jscbindings.mk: Added.
     11        * Android.derived.mk: Added.
     12        * Android.jscbindings.mk: Added.
     13        * Android.mk: Added.
     14        * WebCorePrefix.h: Modified. Sets up some flags and adds a header required for building on Android.
     15
    1162009-12-08  Christian Dywan  <christian@twotoasts.de>
    217
  • trunk/WebCore/WebCorePrefix.h

    r47396 r51858  
    6363#endif // defined(WIN32) || defined(_WIN32)
    6464
     65#if defined(ANDROID)
     66#ifdef __cplusplus
     67// Must come before include of algorithm.
     68#define PREFIX_FOR_WEBCORE 1
     69#define EXPORT __attribute__((visibility("default")))
     70#endif
     71// Android uses a single set of include directories when building WebKit and
     72// JavaScriptCore. Since WebCore/ is included before JavaScriptCore/, Android
     73// includes JavaScriptCore/config.h explicitly here to make sure it gets picked
     74// up.
     75#include <JavaScriptCore/config.h>
     76#endif
     77
    6578#include <sys/types.h>
    6679#include <fcntl.h>
     
    106119#include <time.h>
    107120
    108 #ifndef BUILDING_WX__
     121#if !defined(BUILDING_WX__) && !defined(ANDROID)
    109122#include <CoreFoundation/CoreFoundation.h>
    110123#ifdef WIN_CAIRO
     
    122135
    123136#endif
    124 #endif
     137#endif  // !defined(BUILDING_WX__) && !defined(ANDROID)
    125138
    126139#ifdef __OBJC__
Note: See TracChangeset for help on using the changeset viewer.