| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007-2009 Torch Mobile, Inc. | 3 * Copyright (C) 2007-2009 Torch Mobile, Inc. |
| 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. | 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 /* FIXME: When all platforms' compositors can compute their own filter outsets,
we should remove this define. | 553 /* FIXME: When all platforms' compositors can compute their own filter outsets,
we should remove this define. |
| 554 https://bugs.webkit.org/show_bug.cgi?id=112830 */ | 554 https://bugs.webkit.org/show_bug.cgi?id=112830 */ |
| 555 #if USE(CG) | 555 #if USE(CG) |
| 556 #define HAVE_COMPOSITOR_FILTER_OUTSETS 1 | 556 #define HAVE_COMPOSITOR_FILTER_OUTSETS 1 |
| 557 #endif | 557 #endif |
| 558 | 558 |
| 559 #if !defined(WTF_USE_3D_GRAPHICS) | 559 #if !defined(WTF_USE_3D_GRAPHICS) |
| 560 #define WTF_USE_3D_GRAPHICS 1 | 560 #define WTF_USE_3D_GRAPHICS 1 |
| 561 #endif | 561 #endif |
| 562 | 562 |
| 563 #if CPU(ARM_THUMB2) | |
| 564 #define ENABLE_BRANCH_COMPACTION 1 | |
| 565 #endif | |
| 566 | |
| 567 #if !defined(ENABLE_THREADING_LIBDISPATCH) && HAVE(DISPATCH_H) | 563 #if !defined(ENABLE_THREADING_LIBDISPATCH) && HAVE(DISPATCH_H) |
| 568 #define ENABLE_THREADING_LIBDISPATCH 1 | 564 #define ENABLE_THREADING_LIBDISPATCH 1 |
| 569 #elif !defined(ENABLE_THREADING_OPENMP) && defined(_OPENMP) | 565 #elif !defined(ENABLE_THREADING_OPENMP) && defined(_OPENMP) |
| 570 #define ENABLE_THREADING_OPENMP 1 | 566 #define ENABLE_THREADING_OPENMP 1 |
| 571 #elif !defined(THREADING_GENERIC) | 567 #elif !defined(THREADING_GENERIC) |
| 572 #define ENABLE_THREADING_GENERIC 1 | 568 #define ENABLE_THREADING_GENERIC 1 |
| 573 #endif | 569 #endif |
| 574 | 570 |
| 575 #if !defined(WTF_USE_ZLIB) | 571 #if !defined(WTF_USE_ZLIB) |
| 576 #define WTF_USE_ZLIB 1 | 572 #define WTF_USE_ZLIB 1 |
| 577 #endif | 573 #endif |
| 578 | 574 |
| 579 #endif /* WTF_Platform_h */ | 575 #endif /* WTF_Platform_h */ |
| OLD | NEW |