Changeset 238539 in webkit
- Timestamp:
- Nov 26, 2018, 5:54:59 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
ChangeLog (modified) (1 diff)
-
Source/cmake/OptionsGTK.cmake (modified) (1 diff)
-
Source/cmake/OptionsWPE.cmake (modified) (1 diff)
-
Source/cmake/OptionsWin.cmake (modified) (1 diff)
-
Source/cmake/WebKitFeatures.cmake (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/WebKitTestRunner/CMakeLists.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r238489 r238539 1 2018-11-26 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 [CMake] Remove ENABLE_ACCESSIBILITY CMake variable 4 https://bugs.webkit.org/show_bug.cgi?id=191831 5 6 Reviewed by Michael Catanzaro. 7 8 ENABLE_ACCESSIBILITY is a bit confusing name because there is no 9 such ENABLE_ACCESSIBILITY macros in C++ source files. 10 11 * Source/cmake/OptionsGTK.cmake: Removed ENABLE_ACCESSIBILITY. 12 * Source/cmake/OptionsWPE.cmake: Ditto. 13 * Source/cmake/OptionsWin.cmake: Ditto. 14 * Source/cmake/WebKitFeatures.cmake: Ditto. 15 1 16 2018-11-26 Alberto Garcia <berto@igalia.com> 2 17 -
trunk/Source/cmake/OptionsGTK.cmake
r238442 r238539 144 144 # we need a value different from the default defined in WebKitFeatures.cmake. 145 145 # Changing these options is completely unsupported. 146 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ACCESSIBILITY PRIVATE ON)147 146 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DOWNLOAD_ATTRIBUTE PRIVATE ON) 148 147 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ENCRYPTED_MEDIA PRIVATE ${ENABLE_EXPERIMENTAL_FEATURES}) -
trunk/Source/cmake/OptionsWPE.cmake
r238282 r238539 31 31 # we need a value different from the default defined in WebKitFeatures.cmake. 32 32 # Changing these options is completely unsupported. 33 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ACCESSIBILITY PRIVATE ON)34 33 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ASYNC_SCROLLING PRIVATE ON) 35 34 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GEOLOCATION PRIVATE OFF) -
trunk/Source/cmake/OptionsWin.cmake
r238098 r238539 85 85 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_PUBLIC_SUFFIX_LIST PRIVATE ON) 86 86 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEBGL PUBLIC ON) 87 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ACCESSIBILITY PRIVATE ON)88 87 89 88 # FIXME: Implement plugin process on Modern WebKit. https://bugs.webkit.org/show_bug.cgi?id=185313 -
trunk/Source/cmake/WebKitFeatures.cmake
r238489 r238539 86 86 WEBKIT_OPTION_DEFINE(ENABLE_ACCELERATED_2D_CANVAS "Toggle accelerated 2D canvas support" PRIVATE OFF) 87 87 WEBKIT_OPTION_DEFINE(ENABLE_ACCELERATED_OVERFLOW_SCROLLING "Toggle accelerated scrolling support" PRIVATE OFF) 88 WEBKIT_OPTION_DEFINE(ENABLE_ACCESSIBILITY "Toggle accessibility support" PRIVATE OFF)89 88 WEBKIT_OPTION_DEFINE(ENABLE_API_TESTS "Enable public API unit tests" PRIVATE OFF) 90 89 WEBKIT_OPTION_DEFINE(ENABLE_ASYNC_SCROLLING "Enable asynchronouse scrolling" PRIVATE OFF) -
trunk/Tools/ChangeLog
r238538 r238539 1 2018-11-26 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 [CMake] Remove ENABLE_ACCESSIBILITY CMake variable 4 https://bugs.webkit.org/show_bug.cgi?id=191831 5 6 Reviewed by Michael Catanzaro. 7 8 * WebKitTestRunner/CMakeLists.txt: 9 1 10 2018-11-26 Tim Horton <timothy_horton@apple.com> 2 11 -
trunk/Tools/WebKitTestRunner/CMakeLists.txt
r238098 r238539 56 56 57 57 set(WebKitTestRunnerInjectedBundle_SOURCES 58 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityController.cpp 59 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityTextMarker.cpp 60 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityTextMarkerRange.cpp 61 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityUIElement.cpp 58 62 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/EventSendingController.cpp 59 63 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/GCController.cpp … … 68 72 69 73 set(WebKitTestRunnerInjectedBundle_IDL_FILES 74 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityController.idl" 75 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityTextMarker.idl" 76 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityTextMarkerRange.idl" 77 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityUIElement.idl" 70 78 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/EventSendingController.idl" 71 79 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/GCController.idl" … … 73 81 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/TextInputController.idl" 74 82 ) 75 76 if (ENABLE_ACCESSIBILITY)77 list(APPEND WebKitTestRunnerInjectedBundle_SOURCES78 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityController.cpp79 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityTextMarker.cpp80 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityTextMarkerRange.cpp81 ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityUIElement.cpp82 )83 84 list(APPEND WebKitTestRunnerInjectedBundle_IDL_FILES85 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityController.idl"86 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityTextMarker.idl"87 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityTextMarkerRange.idl"88 "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityUIElement.idl"89 )90 endif ()91 83 92 84 set(WebKitTestRunner_IDL_FILES
Note:
See TracChangeset
for help on using the changeset viewer.