OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2013 Apple Inc. | 2 * Copyright (C) 2004, 2005, 2006, 2013 Apple Inc. |
3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
4 * Copyright (C) 2007-2009 Torch Mobile, Inc. | 4 * Copyright (C) 2007-2009 Torch Mobile, Inc. |
5 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. | 5 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 #define WTF_USE_LOW_QUALITY_IMAGE_INTERPOLATION 1 | 99 #define WTF_USE_LOW_QUALITY_IMAGE_INTERPOLATION 1 |
100 #define WTF_USE_LOW_QUALITY_IMAGE_NO_JPEG_DITHERING 1 | 100 #define WTF_USE_LOW_QUALITY_IMAGE_NO_JPEG_DITHERING 1 |
101 #define WTF_USE_LOW_QUALITY_IMAGE_NO_JPEG_FANCY_UPSAMPLING 1 | 101 #define WTF_USE_LOW_QUALITY_IMAGE_NO_JPEG_FANCY_UPSAMPLING 1 |
102 #else | 102 #else |
103 #define WTF_USE_ICCJPEG 1 | 103 #define WTF_USE_ICCJPEG 1 |
104 #define WTF_USE_QCMSLIB 1 | 104 #define WTF_USE_QCMSLIB 1 |
105 #endif | 105 #endif |
106 | 106 |
107 #if OS(MACOSX) | 107 #if OS(MACOSX) |
108 #define WTF_USE_CF 1 | 108 #define WTF_USE_CF 1 |
| 109 #define WTF_USE_RUBBER_BANDING 1 |
109 | 110 |
110 /* We can't override the global operator new and delete on OS(MACOSX) because | 111 /* We can't override the global operator new and delete on OS(MACOSX) because |
111 * some object are allocated by WebKit and deallocated by the embedder. */ | 112 * some object are allocated by WebKit and deallocated by the embedder. */ |
112 #else /* !OS(MACOSX) */ | 113 #else /* !OS(MACOSX) */ |
113 /* On non-OS(MACOSX), the "system malloc" is actually TCMalloc anyway, so there'
s | 114 /* On non-OS(MACOSX), the "system malloc" is actually TCMalloc anyway, so there'
s |
114 * no need to use WebKit's copy of TCMalloc. */ | 115 * no need to use WebKit's copy of TCMalloc. */ |
115 #define WTF_USE_SYSTEM_MALLOC 1 | 116 #define WTF_USE_SYSTEM_MALLOC 1 |
116 #endif /* OS(MACOSX) */ | 117 #endif /* OS(MACOSX) */ |
117 | 118 |
118 #if !defined(HAVE_ACCESSIBILITY) | 119 #if !defined(HAVE_ACCESSIBILITY) |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 #define SKIP_STATIC_CONSTRUCTORS_ON_GCC 1 | 176 #define SKIP_STATIC_CONSTRUCTORS_ON_GCC 1 |
176 #endif | 177 #endif |
177 | 178 |
178 #ifndef __STDC_FORMAT_MACROS | 179 #ifndef __STDC_FORMAT_MACROS |
179 #define __STDC_FORMAT_MACROS 1 | 180 #define __STDC_FORMAT_MACROS 1 |
180 #endif | 181 #endif |
181 | 182 |
182 #if OS(LINUX) || OS(ANDROID) | 183 #if OS(LINUX) || OS(ANDROID) |
183 #define WTF_USE_HARFBUZZ 1 | 184 #define WTF_USE_HARFBUZZ 1 |
184 #endif | 185 #endif |
OLD | NEW |