mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
9f930e2572
Summary: This removes the old way of consuming `libreact_nativemodule_core.so` from `Android-prebuilt.cmake` to using Prefab which is natively supported by the Android pipeline. This is the last mode that we'll have to handle the prefab for. I'll do the cleanup just after this change landed. Changelog: [Internal] [Changed] - Move `react_nativemodule_core` to be consumed via prefab Reviewed By: cipolleschi Differential Revision: D39929261 fbshipit-source-id: 61669da2cfd0545160a2a4c596c8e4adb22303ec
65 lines
2.8 KiB
CMake
65 lines
2.8 KiB
CMake
# 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.
|
|
|
|
# This configuration provides access to most common React Native prebuilt .so files
|
|
# to avoid recompiling each of the libraries outside of ReactAndroid NDK compilation.
|
|
# Hosting app's/library's CMakeLists.txt can include this Android-prebuilt.cmake file to
|
|
# get access to those libraries to depend on.
|
|
# NOTES:
|
|
# * Currently, it assumes building React Native from source.
|
|
# * Not every .so is listed here (yet).
|
|
# * Static libs are not covered here (yet).
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
set(CMAKE_VERBOSE_MAKEFILE on)
|
|
|
|
# FIRST_PARTY_NDK_DIR contains vendored source code from other FB frameworks
|
|
# like Yoga, FBJNI, etc.
|
|
set(FIRST_PARTY_NDK_DIR ${REACT_ANDROID_DIR}/src/main/jni/first-party)
|
|
# THIRD_PARTY_NDK_DIR is where we're downloading third-party native
|
|
# frameworks such as libevent, boost, etc.
|
|
set(THIRD_PARTY_NDK_DIR ${REACT_ANDROID_BUILD_DIR}/third-party-ndk)
|
|
# REACT_ANDROID_SRC_DIR is the root of ReactAndroid source code (Java & JNI)
|
|
set(REACT_ANDROID_SRC_DIR ${REACT_ANDROID_DIR}/src/main)
|
|
# REACT_COMMON_DIR is the root of ReactCommon source code (C++ only)
|
|
set(REACT_COMMON_DIR ${REACT_ANDROID_DIR}/../ReactCommon)
|
|
# REACT_GENERATED_SRC_DIR is the folder where the codegen for rncore will output
|
|
set(REACT_GENERATED_SRC_DIR ${REACT_ANDROID_BUILD_DIR}/generated/source)
|
|
# REACT_NDK_EXPORT_DIR is the folder where the .so will be copied for being inported
|
|
# in the local project by the packageReactDebugNdkLibs/packageReactReleaseNdkLibs
|
|
set(REACT_NDK_EXPORT_DIR ${PROJECT_BUILD_DIR}/react-ndk/exported)
|
|
|
|
## fb
|
|
add_library(fb SHARED IMPORTED GLOBAL)
|
|
set_target_properties(fb
|
|
PROPERTIES
|
|
IMPORTED_LOCATION
|
|
${REACT_NDK_EXPORT_DIR}/${ANDROID_ABI}/libfb.so)
|
|
target_include_directories(fb
|
|
INTERFACE
|
|
${FIRST_PARTY_NDK_DIR}/fb/include)
|
|
|
|
## react_render_imagemanager
|
|
add_library(react_render_imagemanager SHARED IMPORTED GLOBAL)
|
|
set_target_properties(react_render_imagemanager
|
|
PROPERTIES
|
|
IMPORTED_LOCATION
|
|
${REACT_NDK_EXPORT_DIR}/${ANDROID_ABI}/libreact_render_imagemanager.so)
|
|
target_include_directories(react_render_imagemanager
|
|
INTERFACE
|
|
${REACT_COMMON_DIR}/react/renderer/imagemanager
|
|
${REACT_COMMON_DIR}/react/renderer/imagemanager/platform/cxx)
|
|
|
|
## react_render_mounting
|
|
add_library(react_render_mounting SHARED IMPORTED GLOBAL)
|
|
set_target_properties(react_render_mounting
|
|
PROPERTIES
|
|
IMPORTED_LOCATION
|
|
${REACT_NDK_EXPORT_DIR}/${ANDROID_ABI}/libreact_render_mounting.so)
|
|
target_include_directories(react_render_mounting INTERFACE ${REACT_COMMON_DIR}/react/renderer/mounting)
|
|
|
|
## fbjni
|
|
add_subdirectory(${FIRST_PARTY_NDK_DIR}/fbjni fbjni_build)
|