Changeset 181496 in webkit
- Timestamp:
- Mar 13, 2015, 7:57:54 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 11 edited
-
CMakeLists.txt (modified) (1 diff)
-
ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/PlatformMac.cmake (modified) (1 diff)
-
Source/PlatformMac.cmake (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/PlatformMac.cmake (modified) (6 diffs)
-
Source/WebKit/CMakeLists.txt (added)
-
Source/WebKit/ChangeLog (modified) (1 diff)
-
Source/WebKit2/ChangeLog (modified) (1 diff)
-
Source/WebKit2/PlatformMac.cmake (added)
-
Source/bmalloc/CMakeLists.txt (modified) (1 diff)
-
Source/bmalloc/ChangeLog (modified) (1 diff)
-
Source/bmalloc/PlatformMac.cmake (added)
-
Source/cmake/OptionsMac.cmake (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CMakeLists.txt
r180220 r181496 133 133 endif () 134 134 135 set(WebKit_LIBRARY_TYPE SHARED) 135 136 set(WebKit2_LIBRARY_TYPE SHARED) 136 137 set(WebCoreTestSupport_LIBRARY_TYPE STATIC) -
trunk/ChangeLog
r181395 r181496 1 2015-03-13 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac. 4 https://bugs.webkit.org/show_bug.cgi?id=142680 5 6 Reviewed by Gyuyoung Kim. 7 8 * CMakeLists.txt: 9 * Source/PlatformMac.cmake: Added stub. 10 * Source/cmake/OptionsMac.cmake: 11 Change defines to get CMake working. 12 1 13 2015-03-11 Carlos Garcia Campos <cgarcia@igalia.com> 2 14 -
trunk/Source/JavaScriptCore/ChangeLog
r181495 r181496 1 2015-03-13 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac. 4 https://bugs.webkit.org/show_bug.cgi?id=142680 5 6 Reviewed by Gyuyoung Kim. 7 8 * PlatformMac.cmake: 9 Generate TracingDtrace.h based on project.pbxproj. 10 1 11 2015-03-13 Filip Pizlo <fpizlo@apple.com> 2 12 -
trunk/Source/JavaScriptCore/PlatformMac.cmake
r172093 r181496 25 25 ) 26 26 add_definitions(-DSTATICALLY_LINKED_WITH_WTF) 27 28 add_custom_command( 29 OUTPUT ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/TracingDtrace.h 30 DEPENDS ${JAVASCRIPTCORE_DIR}/runtime/Tracing.d 31 WORKING_DIRECTORY ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR} 32 COMMAND dtrace -h -o "${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/TracingDtrace.h" -s "${JAVASCRIPTCORE_DIR}/runtime/Tracing.d"; 33 VERBATIM) 34 35 list(APPEND JavaScriptCore_INCLUDE_DIRECTORIES 36 ${JAVASCRIPTCORE_DIR}/disassembler/udis86 37 ) 38 list(APPEND JavaScriptCore_HEADERS 39 ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/TracingDtrace.h 40 ) -
trunk/Source/WebCore/ChangeLog
r181494 r181496 1 2015-03-13 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac. 4 https://bugs.webkit.org/show_bug.cgi?id=142680 5 6 Reviewed by Gyuyoung Kim. 7 8 * PlatformMac.cmake: 9 Added new include directories and removed old source files. 10 1 11 2015-03-13 Commit Queue <commit-queue@webkit.org> 2 12 -
trunk/Source/WebCore/PlatformMac.cmake
r180447 r181496 19 19 "${WEBCORE_DIR}/platform/graphics/opentype" 20 20 "${WEBCORE_DIR}/platform/graphics/mac" 21 "${WEBCORE_DIR}/platform/mac" 21 22 "${WEBCORE_DIR}/platform/network/cocoa" 22 23 "${WEBCORE_DIR}/platform/network/cf" … … 24 25 "${WEBCORE_DIR}/platform/text/cf" 25 26 "${WEBCORE_DIR}/platform/text/mac" 26 "${WEBCORE_DIR}/platform/mac" 27 "${WEBCORE_DIR}/platform/spi/cf" 28 "${WEBCORE_DIR}/platform/spi/cg" 29 "${WEBCORE_DIR}/platform/spi/cocoa" 30 "${WEBCORE_DIR}/platform/spi/mac" 27 31 "${WEBCORE_DIR}/plugins/mac" 28 32 … … 94 98 platform/graphics/opentype/OpenTypeMathData.cpp 95 99 96 platform/mac/AxisScrollSnapAnimator.mm97 100 platform/mac/BlockExceptions.mm 98 platform/mac/ContentFilterMac.mm99 101 platform/mac/ContextMenuItemMac.mm 100 102 platform/mac/ContextMenuMac.mm … … 110 112 platform/mac/Language.mm 111 113 platform/mac/LocalCurrentGraphicsContext.mm 112 platform/mac/LocalizedStringsMac.cpp113 114 platform/mac/LoggingMac.mm 114 115 platform/mac/MIMETypeRegistryMac.mm 115 platform/mac/MediaTimeMac.cpp116 116 platform/mac/NSScrollerImpDetails.mm 117 117 platform/mac/PasteboardMac.mm … … 124 124 platform/mac/PlatformSpeechSynthesizerMac.mm 125 125 platform/mac/PublicSuffixMac.mm 126 platform/mac/PurgeableBufferMac.cpp127 126 platform/mac/SSLKeyGeneratorMac.cpp 128 127 platform/mac/ScrollAnimatorMac.mm 129 platform/mac/ScrollController.mm130 128 platform/mac/ScrollViewMac.mm 131 129 platform/mac/ScrollbarThemeMac.mm … … 217 215 platform/mac/SoftLinking.h 218 216 platform/network/cf/ResourceResponse.h 217 platform/spi/cg/CoreGraphicsSPI.h 219 218 ) 220 219 -
trunk/Source/WebKit/ChangeLog
r180876 r181496 1 2015-03-13 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac. 4 https://bugs.webkit.org/show_bug.cgi?id=142680 5 6 Reviewed by Gyuyoung Kim. 7 8 * CMakeLists.txt: Added. 9 1 10 2015-03-01 Dan Bernstein <mitz@apple.com> 2 11 -
trunk/Source/WebKit2/ChangeLog
r181494 r181496 1 2015-03-13 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac. 4 https://bugs.webkit.org/show_bug.cgi?id=142680 5 6 Reviewed by Gyuyoung Kim. 7 8 * PlatformMac.cmake: Added. 9 1 10 2015-03-13 Commit Queue <commit-queue@webkit.org> 2 11 -
trunk/Source/bmalloc/CMakeLists.txt
r180695 r181496 17 17 ) 18 18 19 WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS() 20 19 21 WEBKIT_WRAP_SOURCELIST(${bmalloc_SOURCES}) 20 22 include_directories(${bmalloc_INCLUDE_DIRECTORIES}) -
trunk/Source/bmalloc/ChangeLog
r181457 r181496 1 2015-03-13 Alex Christensen <achristensen@webkit.org> 2 3 Progress towards CMake on Mac. 4 https://bugs.webkit.org/show_bug.cgi?id=142680 5 6 Reviewed by Gyuyoung Kim. 7 8 * CMakeLists.txt: 9 * PlatformMac.cmake: 10 Added Zone.cpp to Mac CMake builds. 11 1 12 2015-03-12 Geoffrey Garen <ggaren@apple.com> 2 13 -
trunk/Source/cmake/OptionsMac.cmake
r178820 r181496 36 36 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DATA_TRANSFER_ITEMS OFF) 37 37 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DETAILS_ELEMENT ON) 38 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DEVICE_ORIENTATION ON)39 38 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DEVICE_ORIENTATION_iphoneos ON) 40 39 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DEVICE_ORIENTATION_iphonesimulator ON) … … 174 173 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_TOUCH_ICON_LOADING OFF) 175 174 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_USERSELECT_ALL ON) 175 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_USER_MESSAGE_HANDLERS ON) 176 176 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO ON) 177 177 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO_TRACK ON) … … 195 195 # FIXME: These are turned off temporarily to get CMake working easier. 196 196 # https://bugs.webkit.org/show_bug.cgi?id=135856 197 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DEVICE_ORIENTATION OFF) 197 198 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FTL_JIT OFF) 198 199 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FTL_JIT_macosx OFF) … … 216 217 WEBKIT_OPTION_END() 217 218 219 set(ENABLE_WEBKIT ON) 220 set(ENABLE_WEBKIT2 ON) 218 221 set(WTF_USE_UDIS86 1)
Note:
See TracChangeset
for help on using the changeset viewer.