Changeset 207452 in webkit


Ignore:
Timestamp:
Oct 17, 2016 6:25:54 PM (8 years ago)
Author:
bshafiei@apple.com
Message:

Merged r207446. rdar://problem/28786160

Location:
tags/Safari-603.1.9.0.1/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tags/Safari-603.1.9.0.1/Source/WebCore/ChangeLog

    r207307 r207452  
     12016-10-17  Babak Shafiei  <bshafiei@apple.com>
     2
     3        Merge r207446.
     4
     5    2016-10-17  Dean Jackson  <dino@apple.com>
     6
     7            Remove dependency cycle with UIKit
     8            https://bugs.webkit.org/show_bug.cgi?id=163577
     9            <rdar://problem/28786160>
     10
     11            Reviewed by Tim Horton.
     12
     13            Soft link against UIKit.
     14
     15            * Configurations/WebCoreTestSupport.xcconfig:
     16            * testing/Internals.mm:
     17
    1182016-10-13  Matthew Hanson  <matthew_hanson@apple.com>
    219
  • tags/Safari-603.1.9.0.1/Source/WebCore/Configurations/WebCoreTestSupport.xcconfig

    r207173 r207452  
    5151OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS);
    5252OTHER_LDFLAGS[sdk=macos*] = $(ASAN_OTHER_LDFLAGS) -framework AppKit;
    53 OTHER_LDFLAGS[sdk=iphoneos*] = $(ASAN_OTHER_LDFLAGS) -framework UIKit -lAccessibility -F$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/PhonyWebKitLegacy;
     53OTHER_LDFLAGS[sdk=iphoneos*] = $(ASAN_OTHER_LDFLAGS) -lAccessibility -F$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/PhonyWebKitLegacy;
    5454OTHER_LDFLAGS[sdk=iphonesimulator*] = $(ASAN_OTHER_LDFLAGS) -framework UIKit -lAccessibility -F$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/PhonyWebKitLegacy;
    5555SECT_ORDER_FLAGS = ;
  • tags/Safari-603.1.9.0.1/Source/WebCore/testing/Internals.mm

    r207173 r207452  
    3232#include "EditorClient.h"
    3333#include "Frame.h"
     34#include "SoftLinking.h"
    3435
    3536#if PLATFORM(IOS)
    36 #import <UIKit/UIKit.h>
     37SOFT_LINK_FRAMEWORK(UIKit)
     38SOFT_LINK(UIKit, UIAccessibilityIsReduceMotionEnabled, BOOL, (void), ())
    3739#endif
    3840
Note: See TracChangeset for help on using the changeset viewer.