feat: remove unused common folder (#1838)

PR removing common directory from library since it is not used currently due to no custom shadow nodes etc. in Fabric implementation.
This commit is contained in:
Wojciech Lewicki
2022-08-17 15:50:01 +02:00
committed by GitHub
parent 0a26639532
commit 778703d8a3
5 changed files with 1 additions and 55 deletions
-37
View File
@@ -1,37 +0,0 @@
SVG_COMMON_THIS_DIR := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_PATH := $(SVG_COMMON_THIS_DIR)
LOCAL_MODULE := rnsvg_common
LOCAL_C_INCLUDES := $(LOCAL_PATH) $(GENERATED_SRC_DIR)/codegen/jni
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/**/*.cpp)
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) $(GENERATED_SRC_DIR)/codegen/jni
# Please note as one of the library listed is libreact_codegen_samplelibrary
# This name will be generated as libreact_codegen_<library-name>
# where <library-name> is the one you specified in the Gradle configuration
LOCAL_SHARED_LIBRARIES := libjsi \
libfbjni \
libglog \
libfolly_runtime \
libyoga \
libreact_nativemodule_core \
libturbomodulejsijni \
librrc_view \
libreact_render_core \
libreact_render_graphics \
libfabricjni \
libreact_debug \
libreact_render_componentregistry \
libreact_render_debug \
libruntimeexecutor \
libreact_codegen_rncore \
libreact_codegen_rnsvg
LOCAL_CFLAGS := \
-DLOG_TAG=\"ReactNative\"
LOCAL_CFLAGS += -fexceptions -frtti -std=c++17 -Wall
include $(BUILD_SHARED_LIBRARY)