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:
committed by
Facebook GitHub Bot
parent
2bae11e132
commit
a783c0d691
@@ -21,8 +21,6 @@ SKObject::SKObject(CGPoint point) {
|
||||
_actual = @{@"x" : @(point.x), @"y" : @(point.y)};
|
||||
}
|
||||
|
||||
#if TARGET_OS_IPHONE
|
||||
|
||||
SKObject::SKObject(UIEdgeInsets insets) {
|
||||
_actual = @{
|
||||
@"top" : @(insets.top),
|
||||
@@ -32,19 +30,6 @@ SKObject::SKObject(UIEdgeInsets insets) {
|
||||
};
|
||||
}
|
||||
|
||||
#elif TARGET_OS_OSX
|
||||
|
||||
SKObject::SKObject(NSEdgeInsets insets) {
|
||||
_actual = @{
|
||||
@"top" : @(insets.top),
|
||||
@"bottom" : @(insets.bottom),
|
||||
@"left" : @(insets.left),
|
||||
@"right" : @(insets.right),
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
SKObject::SKObject(CGAffineTransform transform) {
|
||||
_actual = @{
|
||||
@"a" : @(transform.a),
|
||||
|
||||
Reference in New Issue
Block a user