Changeset 99811 in webkit
- Timestamp:
- Nov 9, 2011, 8:40:07 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/DumpRenderTree/wx/LayoutTestControllerWx.cpp (modified) (1 diff)
-
Tools/waf/build/settings.py (modified) (4 diffs)
-
wscript (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r99748 r99811 1 2011-11-09 Kevin Ollivier <kevino@theolliviers.com> 2 3 [wx] Unreviewed build fix. Update project files. 4 5 * wscript: 6 1 7 2011-11-09 Philippe Normand <pnormand@igalia.com> 2 8 -
trunk/Tools/ChangeLog
r99805 r99811 1 2011-11-09 Kevin Ollivier <kevino@theolliviers.com> 2 3 [wx] Unreviewed build fix. Update project files and 4 add LTC stubs for new methods. 5 6 * DumpRenderTree/wx/LayoutTestControllerWx.cpp: 7 (LayoutTestController::addChromeInputField): 8 (LayoutTestController::removeChromeInputField): 9 (LayoutTestController::focusWebView): 10 (LayoutTestController::setBackingScaleFactor): 11 * waf/build/settings.py: 12 1 13 2011-11-09 Kevin Ollivier <kevino@theolliviers.com> 2 14 -
trunk/Tools/DumpRenderTree/wx/LayoutTestControllerWx.cpp
r94343 r99811 646 646 { 647 647 } 648 649 void LayoutTestController::addChromeInputField() 650 { 651 } 652 653 void LayoutTestController::removeChromeInputField() 654 { 655 } 656 657 void LayoutTestController::focusWebView() 658 { 659 } 660 661 void LayoutTestController::setBackingScaleFactor(double) 662 { 663 } -
trunk/Tools/waf/build/settings.py
r97574 r99811 142 142 'Source/WebCore/platform/mock', 143 143 'Source/WebCore/platform/network', 144 'Source/WebCore/platform/posix', 144 145 'Source/WebCore/platform/sql', 145 146 'Source/WebCore/platform/text', … … 237 238 build_port = Options.options.port 238 239 239 feature_defines = ['ENABLE_DATABASE', 'ENABLE_ XSLT', 'ENABLE_JAVASCRIPT_DEBUGGER',240 feature_defines = ['ENABLE_DATABASE', 'ENABLE_SQL_DATABASE', 'ENABLE_XSLT', 'ENABLE_JAVASCRIPT_DEBUGGER', 240 241 'ENABLE_SVG', 'ENABLE_FILTERS', 'ENABLE_SVG_FONTS', 241 242 'BUILDING_%s' % build_port.upper()] … … 349 350 sdk_version += "u" 350 351 conf.env.append_value('LIB_WKINTERFACE', ['WebKitSystemInterfaceTiger']) 352 elif min_version == "10.7": 353 conf.env.append_value('LIB_WKINTERFACE', ['WebKitSystemInterfaceLion']) 351 354 else: 352 355 # NOTE: There is a WebKitSystemInterfaceSnowLeopard, but when we use that … … 354 357 # work fine for wx's purposes. 355 358 conf.env.append_value('LIB_WKINTERFACE', ['WebKitSystemInterfaceLeopard']) 356 359 conf.env.append_value('LINKFLAGS', ['-framework', 'QuartzCore']) 360 357 361 # match WebKit Mac's default here unless we're building on platforms that won't support 64-bit. 358 362 archs = [] -
trunk/wscript
r95934 r99811 186 186 'Source/WebCore/platform/graphics/cg/FloatSizeCG.cpp', 187 187 'Source/WebCore/platform/graphics/mac/ComplexTextController.cpp', 188 'Source/WebCore/platform/graphics/mac/ComplexTextControllerCoreText. cpp',188 'Source/WebCore/platform/graphics/mac/ComplexTextControllerCoreText.mm', 189 189 'Source/WebCore/platform/graphics/mac/ComplexTextControllerATSUI.cpp', 190 190 'Source/WebCore/platform/graphics/mac/GlyphPageTreeNodeMac.cpp', … … 319 319 excludes.append('WebNativeEventListener.cpp') 320 320 321 # features we don't build / use 322 excludes.append('JSNavigatorCustom.cpp') 323 excludes.append('WebGLContextEvent.cpp') 324 excludes.append('FileSystemPOSIX.cpp') 325 excludes.append('SharedBufferPOSIX.cpp') 326 327 321 328 # These files appear not to build with older versions of ICU 322 329 excludes.append('LocalizedNumberICU.cpp') … … 339 346 # we don't use gestures currently 340 347 excludes.append('PlatformGestureRecognizer.cpp') 348 349 # we need a better system to exclude CF stuff 350 excludes.append('HyphenationCF.cpp') 341 351 342 352 if sys.platform.startswith('darwin'):
Note:
See TracChangeset
for help on using the changeset viewer.