| 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 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 #endif | 57 #endif |
| 58 #endif | 58 #endif |
| 59 | 59 |
| 60 /* ENABLE macro defaults for WebCore */ | 60 /* ENABLE macro defaults for WebCore */ |
| 61 /* Do not use PLATFORM() tests in this section ! */ | 61 /* Do not use PLATFORM() tests in this section ! */ |
| 62 | 62 |
| 63 #if !defined(ENABLE_3D_PLUGIN) | 63 #if !defined(ENABLE_3D_PLUGIN) |
| 64 #define ENABLE_3D_PLUGIN 0 | 64 #define ENABLE_3D_PLUGIN 0 |
| 65 #endif | 65 #endif |
| 66 | 66 |
| 67 #if !defined(ENABLE_3D_RENDERING) | |
| 68 #define ENABLE_3D_RENDERING 0 | |
| 69 #endif | |
| 70 | |
| 71 #if !defined(ENABLE_8BIT_TEXTRUN) | 67 #if !defined(ENABLE_8BIT_TEXTRUN) |
| 72 #define ENABLE_8BIT_TEXTRUN 0 | 68 #define ENABLE_8BIT_TEXTRUN 0 |
| 73 #endif | 69 #endif |
| 74 | 70 |
| 75 #if !defined(ENABLE_ACCELERATED_2D_CANVAS) | 71 #if !defined(ENABLE_ACCELERATED_2D_CANVAS) |
| 76 #define ENABLE_ACCELERATED_2D_CANVAS 0 | 72 #define ENABLE_ACCELERATED_2D_CANVAS 0 |
| 77 #endif | 73 #endif |
| 78 | 74 |
| 79 #if !defined(ENABLE_ACCELERATED_OVERFLOW_SCROLLING) | 75 #if !defined(ENABLE_ACCELERATED_OVERFLOW_SCROLLING) |
| 80 #define ENABLE_ACCELERATED_OVERFLOW_SCROLLING 0 | 76 #define ENABLE_ACCELERATED_OVERFLOW_SCROLLING 0 |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 | 442 |
| 447 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) | 443 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) |
| 448 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" | 444 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" |
| 449 #endif | 445 #endif |
| 450 | 446 |
| 451 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) | 447 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) |
| 452 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" | 448 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" |
| 453 #endif | 449 #endif |
| 454 | 450 |
| 455 #endif /* WTF_FeatureDefines_h */ | 451 #endif /* WTF_FeatureDefines_h */ |
| OLD | NEW |