| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef SkPreConfig_DEFINED | 10 #ifndef SkPreConfig_DEFINED |
| 11 #define SkPreConfig_DEFINED | 11 #define SkPreConfig_DEFINED |
| 12 | 12 |
| 13 #ifdef WEBKIT_VERSION_MIN_REQUIRED | 13 #ifdef WEBKIT_VERSION_MIN_REQUIRED |
| 14 #include "config.h" | 14 #include "config.h" |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 // Allows embedders that want to disable macros that take arguments to just | 17 // Allows embedders that want to disable macros that take arguments to just |
| 18 // define that symbol to be one of these | 18 // define that symbol to be one of these |
| 19 // | 19 // |
| 20 #define SK_NOTHING_ARG1(arg1) | 20 #define SK_NOTHING_ARG1(arg1) |
| 21 #define SK_NOTHING_ARG2(arg1, arg2) | 21 #define SK_NOTHING_ARG2(arg1, arg2) |
| 22 #define SK_NOTHING_ARG3(arg1, arg2, arg3) | 22 #define SK_NOTHING_ARG3(arg1, arg2, arg3) |
| 23 | 23 |
| 24 ////////////////////////////////////////////////////////////////////// | 24 ////////////////////////////////////////////////////////////////////// |
| 25 | 25 |
| 26 #if !defined(SK_BUILD_FOR_ANDROID) && !defined(SK_BUILD_FOR_IOS) && !defined(SK_
BUILD_FOR_PALM) && !defined(SK_BUILD_FOR_WINCE) && !defined(SK_BUILD_FOR_WIN32)
&& !defined(SK_BUILD_FOR_UNIX) && !defined(SK_BUILD_FOR_MAC) && !defined(SK_BUIL
D_FOR_SDL) && !defined(SK_BUILD_FOR_BREW) | 26 #if !defined(SK_BUILD_FOR_ANDROID) && !defined(SK_BUILD_FOR_IOS) && !defined(SK_
BUILD_FOR_PALM) && !defined(SK_BUILD_FOR_WIN32) && !defined(SK_BUILD_FOR_UNIX)
&& !defined(SK_BUILD_FOR_MAC) && !defined(SK_BUILD_FOR_SDL) && !defined(SK_BUILD
_FOR_BREW) |
| 27 | 27 |
| 28 #ifdef __APPLE__ | 28 #ifdef __APPLE__ |
| 29 #include "TargetConditionals.h" | 29 #include "TargetConditionals.h" |
| 30 #endif | 30 #endif |
| 31 | 31 |
| 32 #if defined(PALMOS_SDK_VERSION) | 32 #if defined(PALMOS_SDK_VERSION) |
| 33 #define SK_BUILD_FOR_PALM | 33 #define SK_BUILD_FOR_PALM |
| 34 #elif defined(UNDER_CE) | |
| 35 #define SK_BUILD_FOR_WINCE | |
| 36 #elif defined(WIN32) | 34 #elif defined(WIN32) |
| 37 #define SK_BUILD_FOR_WIN32 | 35 #define SK_BUILD_FOR_WIN32 |
| 38 #elif defined(__SYMBIAN32__) | 36 #elif defined(__SYMBIAN32__) |
| 39 #define SK_BUILD_FOR_WIN32 | 37 #define SK_BUILD_FOR_WIN32 |
| 40 #elif defined(ANDROID) | 38 #elif defined(ANDROID) |
| 41 #define SK_BUILD_FOR_ANDROID | 39 #define SK_BUILD_FOR_ANDROID |
| 42 #elif defined(linux) || defined(__FreeBSD__) || defined(__OpenBSD__) || \ | 40 #elif defined(linux) || defined(__FreeBSD__) || defined(__OpenBSD__) || \ |
| 43 defined(__sun) || defined(__NetBSD__) || defined(__DragonFly__) || \ | 41 defined(__sun) || defined(__NetBSD__) || defined(__DragonFly__) || \ |
| 44 defined(__GLIBC__) || defined(__GNU__) | 42 defined(__GLIBC__) || defined(__GNU__) |
| 45 #define SK_BUILD_FOR_UNIX | 43 #define SK_BUILD_FOR_UNIX |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 * | 260 * |
| 263 * NOTE: Clang/ARM (r161757) does not support the 'optimize' attribute. | 261 * NOTE: Clang/ARM (r161757) does not support the 'optimize' attribute. |
| 264 */ | 262 */ |
| 265 #if SK_HAS_ATTRIBUTE(optimize) | 263 #if SK_HAS_ATTRIBUTE(optimize) |
| 266 # define SK_ATTRIBUTE_OPTIMIZE_O1 __attribute__((optimize("O1"))) | 264 # define SK_ATTRIBUTE_OPTIMIZE_O1 __attribute__((optimize("O1"))) |
| 267 #else | 265 #else |
| 268 # define SK_ATTRIBUTE_OPTIMIZE_O1 /* nothing */ | 266 # define SK_ATTRIBUTE_OPTIMIZE_O1 /* nothing */ |
| 269 #endif | 267 #endif |
| 270 | 268 |
| 271 #endif | 269 #endif |
| OLD | NEW |