Changeset 54320 in webkit


Ignore:
Timestamp:
Feb 3, 2010 6:49:29 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-02-03 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Define WTF_PLATFORM_BREWMP_SIMULATOR when AEE_SIMULATOR is defined
https://bugs.webkit.org/show_bug.cgi?id=34514

PLATFORM(BREWMP_SIMULATOR) guard is needed to make distinction between BREWMP
and BREWMP simulator.

  • wtf/Platform.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r54296 r54320  
     12010-02-03  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [BREWMP] Define WTF_PLATFORM_BREWMP_SIMULATOR when AEE_SIMULATOR is defined
     6        https://bugs.webkit.org/show_bug.cgi?id=34514
     7
     8        PLATFORM(BREWMP_SIMULATOR) guard is needed to make distinction between BREWMP
     9        and BREWMP simulator.
     10
     11        * wtf/Platform.h:
     12
    1132010-02-03  Kwang Yul Seo  <skyul@company100.net>
    214
  • trunk/JavaScriptCore/wtf/Platform.h

    r54287 r54320  
    418418#elif defined(BUILDING_BREWMP__)
    419419#define WTF_PLATFORM_BREWMP 1
     420#if defined(AEE_SIMULATOR)
     421#define WTF_PLATFORM_BREWMP_SIMULATOR 1
     422#else
     423#define WTF_PLATFORM_BREWMP_SIMULATOR 0
     424#endif
    420425#elif OS(DARWIN)
    421426#define WTF_PLATFORM_MAC 1
Note: See TracChangeset for help on using the changeset viewer.