Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Yoga imports and includes on case-sensitive machines #26416

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Libraries/Text/Text/RCTTextShadowView.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#import <React/RCTBridge.h>
#import <React/RCTShadowView+Layout.h>
#import <React/RCTUIManager.h>
#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

#import "NSTextStorage+FontScaling.h"
#import <React/RCTTextView.h>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Text/TextInput/RCTBaseTextInputShadowView.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#import <React/RCTBridge.h>
#import <React/RCTShadowView+Layout.h>
#import <React/RCTUIManager.h>
#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

#import "NSTextStorage+FontScaling.h"
#import <React/RCTBaseTextInputView.h>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Text/VirtualText/RCTVirtualTextShadowView.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#import <React/RCTVirtualTextShadowView.h>

#import <React/RCTShadowView+Layout.h>
#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

#import <React/RCTRawTextShadowView.h>

Expand Down
2 changes: 1 addition & 1 deletion React/Base/RCTConvert.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#import <React/RCTLog.h>
#import <React/RCTPointerEvents.h>
#import <React/RCTTextDecorationLineType.h>
#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>
#if TARGET_OS_IPHONE && WEBKIT_IOS_10_APIS_AVAILABLE
#import <WebKit/WebKit.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion React/Base/Surface/RCTSurfaceRootShadowView.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#import <React/RCTShadowView.h>
#import <React/RCTSurfaceRootShadowViewDelegate.h>
#import <yoga/YGEnums.h>
#import <Yoga/YGEnums.h>

@interface RCTSurfaceRootShadowView : RCTShadowView

Expand Down
2 changes: 1 addition & 1 deletion React/Views/RCTLayout.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#import <UIKit/UIKit.h>

#import <React/RCTDefines.h>
#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion React/Views/RCTLayout.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* LICENSE file in the root directory of this source tree.
*/

#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

#import "RCTAssert.h"
#import "RCTShadowView+Layout.h"
Expand Down
2 changes: 1 addition & 1 deletion React/Views/RCTRootShadowView.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

#import <React/RCTShadowView.h>
#import <yoga/YGEnums.h>
#import <Yoga/YGEnums.h>

@interface RCTRootShadowView : RCTShadowView

Expand Down
2 changes: 1 addition & 1 deletion React/Views/RCTShadowView+Layout.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#import "RCTShadowView+Layout.h"

#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

#import "RCTAssert.h"

Expand Down
2 changes: 1 addition & 1 deletion React/Views/RCTShadowView.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#import <React/RCTComponent.h>
#import <React/RCTLayout.h>
#import <React/RCTRootView.h>
#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

@class RCTRootShadowView;
@class RCTSparseArray;
Expand Down
2 changes: 1 addition & 1 deletion React/Views/SafeAreaView/RCTSafeAreaShadowView.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#import "RCTSafeAreaShadowView.h"

#import <React/RCTAssert.h>
#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

#import "RCTSafeAreaViewLocalData.h"

Expand Down
2 changes: 1 addition & 1 deletion React/Views/ScrollView/RCTScrollContentShadowView.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#import "RCTScrollContentShadowView.h"

#import <yoga/Yoga.h>
#import <Yoga/Yoga.h>

#import "RCTUtils.h"

Expand Down
2 changes: 1 addition & 1 deletion React/Views/UIView+React.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#import <UIKit/UIKit.h>

#import <React/RCTComponent.h>
#import <yoga/YGEnums.h>
#import <Yoga/YGEnums.h>

@class RCTShadowView;

Expand Down
2 changes: 1 addition & 1 deletion ReactCommon/yoga/yoga/Bitfield.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <cstddef>
#include <limits>
#include <type_traits>
#include <yoga/YGEnums.h>
#include <Yoga/YGEnums.h>

namespace facebook {
namespace yoga {
Expand Down
2 changes: 1 addition & 1 deletion ReactCommon/yoga/yoga/event/event.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <functional>
#include <vector>
#include <array>
#include <yoga/YGEnums.h>
#include <Yoga/YGEnums.h>

struct YGConfig;
struct YGNode;
Expand Down