mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Update LOCAL_SHARED_LIBRARIES to be a multiline string
Summary: We have `LOCAL_SHARED_LIBRARIES` that are getting longer and are making reviewing them on Diffs quite hard. Having all the list of the dependency on a single line is suboptimal and it makes hard to find duplicated entries. I've updated the longest `LOCAL_SHARED_LIBRARIES` to be multilines and I've sorted the entries here. Changelog: [Internal] [Changed] - LOCAL_SHARED_LIBRARIES Reviewed By: ShikaSD Differential Revision: D32695127 fbshipit-source-id: f5b381c501ddff083ef9f4baaca6c4c8c9523368
This commit is contained in:
committed by
Facebook GitHub Bot
parent
d74e71e86b
commit
b8f415eb6c
@@ -19,7 +19,13 @@ LOCAL_C_INCLUDES := $(LOCAL_PATH) $(REACT_NATIVE)/ReactCommon/jsi $(call find-no
|
||||
LOCAL_CPP_FEATURES := exceptions
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libjsireact
|
||||
LOCAL_SHARED_LIBRARIES := libfolly_json libfb libfbjni libreactnativejni libhermes libjsi
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libfb \
|
||||
libfbjni \
|
||||
libfolly_json \
|
||||
libhermes \
|
||||
libjsi \
|
||||
libreactnativejni
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
|
||||
@@ -18,7 +18,13 @@ LOCAL_C_INCLUDES := $(LOCAL_PATH) $(REACT_NATIVE)/ReactCommon/jsi $(call find-no
|
||||
LOCAL_CPP_FEATURES := exceptions
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libjsireact libhermes-executor-common-release
|
||||
LOCAL_SHARED_LIBRARIES := libfolly_json libfb libfbjni libreactnativejni libhermes libjsi
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libfb \
|
||||
libfbjni \
|
||||
libfolly_json \
|
||||
libhermes \
|
||||
libjsi \
|
||||
libreactnativejni
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
@@ -35,6 +41,12 @@ LOCAL_C_INCLUDES := $(LOCAL_PATH) $(REACT_NATIVE)/ReactCommon/jsi $(call find-no
|
||||
LOCAL_CPP_FEATURES := exceptions
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libjsireact libhermes-executor-common-debug libhermes-inspector
|
||||
LOCAL_SHARED_LIBRARIES := libfolly_json libfb libfbjni libreactnativejni libhermes libjsi
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libfb \
|
||||
libfbjni \
|
||||
libfolly_json \
|
||||
libhermes \
|
||||
libjsi \
|
||||
libreactnativejni
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
@@ -11,7 +11,18 @@ LOCAL_MODULE := mapbufferjni
|
||||
|
||||
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/react/common/mapbuffer/*.cpp)
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libreactconfig libyoga libglog libfb libfbjni libglog_init libfolly_json libfolly_futures libreact_utils libreact_render_mapbuffer libreact_debug
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libfb \
|
||||
libfbjni \
|
||||
libfolly_futures \
|
||||
libfolly_json \
|
||||
libglog \
|
||||
libglog_init \
|
||||
libreact_debug \
|
||||
libreact_render_mapbuffer \
|
||||
libreact_utils \
|
||||
libreactconfig \
|
||||
libyoga
|
||||
|
||||
LOCAL_STATIC_LIBRARIES :=
|
||||
|
||||
|
||||
@@ -11,7 +11,48 @@ LOCAL_MODULE := fabricjni
|
||||
|
||||
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.cpp)
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libjsi libreactconfig librrc_slider librrc_progressbar librrc_switch librrc_modal libyoga libglog libfb libfbjni libglog_init libfolly_json libfolly_futures libreact_render_mounting libreactnativeutilsjni libreact_utils libreact_render_debug libreact_render_graphics libreact_render_core react_render_componentregistry librrc_view librrc_unimplementedview librrc_root librrc_scrollview libbetter libreact_render_attributedstring libreact_render_uimanager libreact_render_templateprocessor libreact_render_scheduler libreact_render_animations libreact_render_imagemanager libreact_render_textlayoutmanager libreact_codegen_rncore rrc_text librrc_image librrc_textinput libreact_debug libreact_render_mapbuffer libmapbufferjni libreact_render_telemetry libreact_render_runtimescheduler
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libbetter \
|
||||
libfb \
|
||||
libfbjni \
|
||||
libfolly_futures \
|
||||
libfolly_json \
|
||||
libglog \
|
||||
libglog_init \
|
||||
libjsi \
|
||||
libmapbufferjni \
|
||||
libreact_codegen_rncore \
|
||||
libreact_debug \
|
||||
libreact_render_animations \
|
||||
libreact_render_attributedstring \
|
||||
libreact_render_core \
|
||||
libreact_render_debug \
|
||||
libreact_render_graphics \
|
||||
libreact_render_imagemanager \
|
||||
libreact_render_mapbuffer \
|
||||
libreact_render_mounting \
|
||||
libreact_render_runtimescheduler \
|
||||
libreact_render_scheduler \
|
||||
libreact_render_telemetry \
|
||||
libreact_render_templateprocessor \
|
||||
libreact_render_textlayoutmanager \
|
||||
libreact_render_uimanager \
|
||||
libreact_utils \
|
||||
libreactconfig \
|
||||
libreactnativeutilsjni \
|
||||
librrc_image \
|
||||
librrc_modal \
|
||||
librrc_progressbar \
|
||||
librrc_root \
|
||||
librrc_scrollview \
|
||||
librrc_slider \
|
||||
librrc_switch \
|
||||
librrc_textinput \
|
||||
librrc_unimplementedview \
|
||||
librrc_view \
|
||||
libyoga \
|
||||
react_render_componentregistry \
|
||||
rrc_text
|
||||
|
||||
LOCAL_STATIC_LIBRARIES :=
|
||||
|
||||
|
||||
@@ -16,6 +16,11 @@ LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
||||
LOCAL_CFLAGS += -fvisibility=hidden -fexceptions -frtti
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libjsireact jscruntime
|
||||
LOCAL_SHARED_LIBRARIES := libfolly_json libfb libfbjni libreactnativejni libjsi
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libfb \
|
||||
libfbjni \
|
||||
libfolly_json \
|
||||
libjsi \
|
||||
libreactnativejni
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
@@ -16,6 +16,11 @@ LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
||||
LOCAL_CFLAGS += -fvisibility=hidden -fexceptions -frtti
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libjsireact
|
||||
LOCAL_SHARED_LIBRARIES := libfolly_json libfb libfbjni libreactnativejni libjsi
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libfb \
|
||||
libfbjni \
|
||||
libfolly_json \
|
||||
libjsi \
|
||||
libreactnativejni
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
@@ -11,7 +11,16 @@ LOCAL_MODULE := uimanagerjni
|
||||
|
||||
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.cpp)
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libyoga libglog libfb libfbjni libglog_init libfolly_json libfolly_futures react_render_componentregistry librrc_native
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libfb \
|
||||
libfbjni \
|
||||
libfolly_futures \
|
||||
libfolly_json \
|
||||
libglog \
|
||||
libglog_init \
|
||||
librrc_native \
|
||||
libyoga \
|
||||
react_render_componentregistry
|
||||
|
||||
LOCAL_STATIC_LIBRARIES :=
|
||||
|
||||
|
||||
Reference in New Issue
Block a user