Drop WITH_INSPECTOR build flag (#41911)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/41911

Follow-up to D52040150.

Changelog: [Internal]

Reviewed By: motiz88

Differential Revision: D52072475

fbshipit-source-id: d028ca4c5282c4c061af08be5d7e63f1c3d9bdcb
This commit is contained in:
Alex Hunt
2023-12-13 03:37:32 -08:00
committed by Facebook GitHub Bot
parent 4fcfde1114
commit 957a1977b3
5 changed files with 3 additions and 19 deletions
@@ -58,7 +58,6 @@ target_compile_options(${CMAKE_PROJECT_NAME}
-fexceptions
-frtti
-std=c++20
-DWITH_INSPECTOR=1
-DLOG_TAG=\"ReactNative\")
# Prefab packages from React Native
@@ -11,8 +11,7 @@ file(GLOB reactnativejni_SRC CONFIGURE_DEPENDS *.cpp)
add_compile_options(
-fexceptions
-Wno-unused-lambda-capture
-std=c++20
-DWITH_INSPECTOR=1)
-std=c++20)
######################
### reactnativejni ###
@@ -9,8 +9,6 @@
#include <memory>
#ifdef WITH_INSPECTOR
namespace facebook::react {
namespace {
@@ -111,5 +109,3 @@ void JInspector::registerNatives() {
}
} // namespace facebook::react
#endif
@@ -7,8 +7,6 @@
#pragma once
#ifdef WITH_INSPECTOR
#include <jsinspector-modern/InspectorInterfaces.h>
#include <fbjni/fbjni.h>
@@ -77,5 +75,3 @@ class JInspector : public jni::HybridClass<JInspector> {
};
} // namespace facebook::react
#endif
@@ -16,17 +16,14 @@
#include "CatalystInstanceImpl.h"
#include "CxxModuleWrapperBase.h"
#include "JCallback.h"
#include "JInspector.h"
#include "JInspectorFlags.h"
#include "JReactMarker.h"
#include "JavaScriptExecutorHolder.h"
#include "ProxyExecutor.h"
#include "WritableNativeArray.h"
#include "WritableNativeMap.h"
#ifdef WITH_INSPECTOR
#include "JInspector.h"
#include "JInspectorFlags.h"
#endif
#ifndef WITH_GLOGINIT
#define WITH_GLOGINIT 1
#endif
@@ -87,11 +84,8 @@ extern "C" JNIEXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
ReadableNativeMap::registerNatives();
WritableNativeMap::registerNatives();
JReactMarker::registerNatives();
#ifdef WITH_INSPECTOR
JInspector::registerNatives();
JInspectorFlags::registerNatives();
#endif
});
}