Skip to content

Commit

Permalink
Remove REACT_HEADERS from RN BUCK file
Browse files Browse the repository at this point in the history
Reviewed By: emilsjolander

Differential Revision: D4231819

fbshipit-source-id: 78c1316d8e2bd8d9c0947b1c1c4dc857b74824ae
  • Loading branch information
javache authored and Martin Konicek committed Dec 12, 2016
1 parent d043775 commit 9024998
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Libraries/ART/ARTNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/

#import "UIView+React.h"
#import <React/UIView+React.h>

/**
* ART nodes are implemented as empty UIViews but this is just an implementation detail to fit
Expand Down
3 changes: 2 additions & 1 deletion Libraries/ART/ARTSurfaceView.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

#import "ARTSurfaceView.h"

#import <React/RCTLog.h>

#import "ARTNode.h"
#import "RCTLog.h"

@implementation ARTSurfaceView

Expand Down
2 changes: 1 addition & 1 deletion Libraries/ART/Brushes/ARTBrush.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#import "ARTBrush.h"

#import "RCTDefines.h"
#import <React/RCTDefines.h>

@implementation ARTBrush

Expand Down
3 changes: 2 additions & 1 deletion Libraries/ART/Brushes/ARTLinearGradient.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

#import "ARTLinearGradient.h"

#import <React/RCTLog.h>

#import "RCTConvert+ART.h"
#import "RCTLog.h"

@implementation ARTLinearGradient
{
Expand Down
3 changes: 2 additions & 1 deletion Libraries/ART/Brushes/ARTPattern.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

#import "ARTPattern.h"

#import <React/RCTLog.h>

#import "RCTConvert+ART.h"
#import "RCTLog.h"

@implementation ARTPattern
{
Expand Down
3 changes: 2 additions & 1 deletion Libraries/ART/Brushes/ARTRadialGradient.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

#import "ARTRadialGradient.h"

#import <React/RCTLog.h>

#import "RCTConvert+ART.h"
#import "RCTLog.h"

@implementation ARTRadialGradient
{
Expand Down
3 changes: 2 additions & 1 deletion Libraries/ART/Brushes/ARTSolidColor.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

#import "ARTSolidColor.h"

#import <React/RCTLog.h>

#import "RCTConvert+ART.h"
#import "RCTLog.h"

@implementation ARTSolidColor
{
Expand Down
3 changes: 2 additions & 1 deletion Libraries/ART/RCTConvert+ART.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@

#import <QuartzCore/QuartzCore.h>

#import <React/RCTConvert.h>

#import "ARTBrush.h"
#import "ARTCGFloatArray.h"
#import "ARTTextFrame.h"
#import "RCTConvert.h"

@interface RCTConvert (ART)

Expand Down
5 changes: 3 additions & 2 deletions Libraries/ART/RCTConvert+ART.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@

#import "RCTConvert+ART.h"

#import <React/RCTFont.h>
#import <React/RCTLog.h>

#import "ARTLinearGradient.h"
#import "ARTPattern.h"
#import "ARTRadialGradient.h"
#import "ARTSolidColor.h"
#import "RCTLog.h"
#import "RCTFont.h"

@implementation RCTConvert (ART)

Expand Down
5 changes: 3 additions & 2 deletions Libraries/ART/ViewManagers/ARTNodeManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/

#import "ARTNode.h"
#import "RCTViewManager.h"
#import <React/RCTViewManager.h>

@class ARTNode;

@interface ARTNodeManager : RCTViewManager

Expand Down
2 changes: 1 addition & 1 deletion Libraries/ART/ViewManagers/ARTSurfaceViewManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/

#import "RCTViewManager.h"
#import <React/RCTViewManager.h>

@interface ARTSurfaceViewManager : RCTViewManager

Expand Down

0 comments on commit 9024998

Please sign in to comment.