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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 #define ENABLE_SVG_DOM_OBJC_BINDINGS 0 | 772 #define ENABLE_SVG_DOM_OBJC_BINDINGS 0 |
773 #endif | 773 #endif |
774 #endif | 774 #endif |
775 | 775 |
776 #if ENABLE(SVG) | 776 #if ENABLE(SVG) |
777 #if !defined(ENABLE_SVG_FONTS) | 777 #if !defined(ENABLE_SVG_FONTS) |
778 #define ENABLE_SVG_FONTS 1 | 778 #define ENABLE_SVG_FONTS 1 |
779 #endif | 779 #endif |
780 #endif | 780 #endif |
781 | 781 |
782 #if !defined(ENABLE_TEXT_AUTOSIZING) | |
783 #define ENABLE_TEXT_AUTOSIZING 0 | |
784 #endif | |
785 | |
786 #if !defined(ENABLE_TEXT_CARET) | 782 #if !defined(ENABLE_TEXT_CARET) |
787 #define ENABLE_TEXT_CARET 1 | 783 #define ENABLE_TEXT_CARET 1 |
788 #endif | 784 #endif |
789 | 785 |
790 #if !defined(ENABLE_TEXT_NOTIFICATIONS_ONLY) | 786 #if !defined(ENABLE_TEXT_NOTIFICATIONS_ONLY) |
791 #define ENABLE_TEXT_NOTIFICATIONS_ONLY 0 | 787 #define ENABLE_TEXT_NOTIFICATIONS_ONLY 0 |
792 #endif | 788 #endif |
793 | 789 |
794 #if !defined(ENABLE_THREADED_HTML_PARSER) | 790 #if !defined(ENABLE_THREADED_HTML_PARSER) |
795 #define ENABLE_THREADED_HTML_PARSER 0 | 791 #define ENABLE_THREADED_HTML_PARSER 0 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
871 | 867 |
872 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) | 868 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) |
873 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" | 869 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" |
874 #endif | 870 #endif |
875 | 871 |
876 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) | 872 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) |
877 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" | 873 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" |
878 #endif | 874 #endif |
879 | 875 |
880 #endif /* WTF_FeatureDefines_h */ | 876 #endif /* WTF_FeatureDefines_h */ |
OLD | NEW |