Revert D27328277: add macOS deps to shared libraries

Differential Revision:
D27328277 (7c44d4d4f0)

Original commit changeset: f22d1e9f6a54

fbshipit-source-id: bc893df5ba5a0bd9d47eeab4ff345e7c5047da9b
This commit is contained in:
Xiangxin Sun
2021-03-29 20:10:33 -07:00
committed by Facebook GitHub Bot
parent 2bae11e132
commit a783c0d691
24 changed files with 5 additions and 444 deletions

View File

@@ -5,32 +5,14 @@
* LICENSE file in the root directory of this source tree.
*/
#import <TargetConditionals.h>
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
#elif TARGET_OS_OSX
#import <AppKit/AppKit.h>
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
#endif
@interface SKHighlightOverlay : NSObject
+ (instancetype)sharedInstance;
#if TARGET_OS_IPHONE
+ (UIColor*)overlayColor;
- (void)mountInView:(UIView*)view withFrame:(CGRect)frame;
#elif TARGET_OS_OSX
+ (NSColor*)overlayColor;
- (void)mountInView:(NSView*)view withFrame:(CGRect)frame;
#endif
- (void)unmount;
@end