Commit 742c9664 authored by eric@webkit.org's avatar eric@webkit.org

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:

git-svn-id: svn://svn.chromium.org/blink/trunk@54320 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 4351b62b
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:
2010-02-03 Kwang Yul Seo <skyul@company100.net> 2010-02-03 Kwang Yul Seo <skyul@company100.net>
Reviewed by Eric Seidel. Reviewed by Eric Seidel.
......
...@@ -417,6 +417,11 @@ ...@@ -417,6 +417,11 @@
#define WTF_PLATFORM_HAIKU 1 #define WTF_PLATFORM_HAIKU 1
#elif defined(BUILDING_BREWMP__) #elif defined(BUILDING_BREWMP__)
#define WTF_PLATFORM_BREWMP 1 #define WTF_PLATFORM_BREWMP 1
#if defined(AEE_SIMULATOR)
#define WTF_PLATFORM_BREWMP_SIMULATOR 1
#else
#define WTF_PLATFORM_BREWMP_SIMULATOR 0
#endif
#elif OS(DARWIN) #elif OS(DARWIN)
#define WTF_PLATFORM_MAC 1 #define WTF_PLATFORM_MAC 1
#elif OS(WINDOWS) #elif OS(WINDOWS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment