2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Portions Copyright (c) 2010 Motorola Mobility, Inc. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
18 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
24 * THE POSSIBILITY OF SUCH DAMAGE.
27 #if defined (BUILDING_GTK__)
28 #include "autotoolsconfig.h"
29 #endif /* defined (BUILDING_GTK__) */
31 #include <wtf/DisallowCType.h>
32 #include <wtf/Platform.h>
35 #ifndef EXTERN_C_BEGIN
36 #define EXTERN_C_BEGIN extern "C" {
39 #define EXTERN_C_END }
42 #define EXTERN_C_BEGIN
46 // For defining getters to a static value, where the getters have internal linkage
47 #define DEFINE_STATIC_GETTER(type, name, arguments) \
48 static const type& name() \
50 DEFINE_STATIC_LOCAL(type, name##Value, arguments); \
54 #if defined(BUILDING_QT__) || defined(BUILDING_GTK__)
60 #define JS_EXPORTCLASS
61 #define WTF_EXPORT_PRIVATE
62 #define JS_EXPORT_PRIVATE
64 #elif defined(__APPLE__)
67 #define OBJC_CLASS @class
69 #define OBJC_CLASS class
72 #if !defined(BUILDING_ON_LEOPARD) && !defined(BUILDING_ON_SNOW_LEOPARD)
73 #define ENABLE_WEB_PROCESS_SANDBOX 1
76 #define ENABLE_PLUGIN_PROCESS 1
79 #define ENABLE_MEMORY_SAMPLER 1
82 #import <CoreGraphics/CoreGraphics.h>
85 #import <Cocoa/Cocoa.h>
88 /* WebKit has no way to pull settings from WebCore/config.h for now */
89 /* so we assume WebKit is always being compiled on top of JavaScriptCore */
94 #define JS_EXPORTCLASS
95 #define WEBKIT_EXPORTDATA
97 #define WTF_EXPORT_PRIVATE
98 #define JS_EXPORT_PRIVATE
100 #include <WebCore/EmptyProtocolDefinitions.h>
102 #elif defined(WIN32) || defined(_WIN32)
105 #define _WIN32_WINNT 0x0500
109 #define WINVER 0x0500
112 /* If we don't define these, they get defined in windef.h. */
113 /* We want to use std::min and std::max. */
122 #define _WINSOCKAPI_ /* Prevent inclusion of winsock.h in windows.h */
125 #include <WebCore/config.h>
129 #include <CoreGraphics/CoreGraphics.h>
132 #endif /* defined(WIN32) || defined(_WIN32) */
136 // These undefs match up with defines in WebKit2Prefix.h for Mac OS X.
137 // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h".
140 #include <wtf/FastMalloc.h>
144 #if PLATFORM(MAC) || (OS(MAC_OS_X) && PLATFORM(QT))
145 #define PLUGIN_ARCHITECTURE_MAC 1
146 #elif PLATFORM(WIN) || (OS(WINDOWS) && PLATFORM(QT))
147 #define PLUGIN_ARCHITECTURE_WIN 1
148 #elif (PLATFORM(QT) && defined(Q_WS_X11)) || (PLATFORM(GTK) && OS(UNIX) && !OS(MAC_OS_X))
149 #define PLUGIN_ARCHITECTURE_X11 1
152 #define PLUGIN_ARCHITECTURE(ARCH) (defined PLUGIN_ARCHITECTURE_##ARCH && PLUGIN_ARCHITECTURE_##ARCH)