forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
decouple RCTBridge+Private from jsinspector-modern
Summary: Changelog: [Internal] RCTBridge+Private is transitively bringing in boost in 0.74, which is causing build errors for some libs that were originally depending on it. this is because boost is a special pod that needs separate handling to link correctly. let's simplify this problem by decoupling this header and moving the inspector specific logic into it's own category. Differential Revision: D55228474
- Loading branch information
1 parent
15a5638
commit 3cfcbf5
Showing
6 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#import <React/RCTBridge.h> | ||
|
||
#ifdef __cplusplus | ||
#import <jsinspector-modern/ReactCdp.h> | ||
#endif | ||
|
||
@interface RCTBridge (Inspector) | ||
|
||
/** | ||
* The HostTarget for this bridge, if one has been created. Exposed for RCTCxxBridge only. | ||
*/ | ||
@property (nonatomic, assign, readonly) | ||
#ifdef __cplusplus | ||
facebook::react::jsinspector_modern::HostTarget * | ||
#else | ||
// The inspector infrastructure cannot be used in C or Swift code. | ||
void * | ||
#endif | ||
inspectorTarget; | ||
|
||
@property (nonatomic, readonly, getter=isInspectable) BOOL inspectable; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters