Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a86c809b authored by James Dong's avatar James Dong
Browse files

Remove libvideoeditor_jni.so's dependency on static libs in video editor engine

related-to-bug: 6502980

Change-Id: I9cbbf44eb53c406263df4003cc3de2af4d239180
parent 62999949
Loading
Loading
Loading
Loading
+16 −16
Original line number Diff line number Diff line
@@ -41,27 +41,27 @@ LOCAL_SRC_FILES:= \
LOCAL_MODULE_TAGS := optional

LOCAL_STATIC_LIBRARIES := \
    libvideoeditor_osal \
    libstagefright_color_conversion



LOCAL_SHARED_LIBRARIES :=     \
    libaudioflinger           \
    libaudioutils             \
    libbinder                 \
    libutils           \
    libcutils                 \
    libEGL                    \
    libGLESv2                 \
    libgui                    \
    libmedia                  \
    libmedia_native           \
    libdrmframework           \
    libstagefright            \
    libstagefright_omx  \
    libstagefright_foundation \
    libgui \
    libaudioflinger \
    libstagefright_omx        \
    libui                     \
    libEGL \
    libGLESv2
    libutils                  \
    libvideoeditor_osal       \


LOCAL_C_INCLUDES += \
+1 −1
Original line number Diff line number Diff line
@@ -63,5 +63,5 @@ LOCAL_CFLAGS += -Wno-multichar \
    -DUSE_STAGEFRIGHT_READERS \
    -DUSE_STAGEFRIGHT_3GPP_READER

include $(BUILD_STATIC_LIBRARY)
include $(BUILD_SHARED_LIBRARY)
+4 −4
Original line number Diff line number Diff line
@@ -31,10 +31,10 @@ LOCAL_SRC_FILES:= \

LOCAL_MODULE_TAGS := optional

LOCAL_SHARED_LIBRARIES := libcutils libutils

LOCAL_STATIC_LIBRARIES := \
    libvideoeditor_osal
LOCAL_SHARED_LIBRARIES := \
    libcutils             \
    libutils              \
    libvideoeditor_osal   \

LOCAL_C_INCLUDES += \
    $(TOP)/frameworks/av/libvideoeditor/osal/inc \
+4 −4
Original line number Diff line number Diff line
@@ -33,10 +33,10 @@ LOCAL_SRC_FILES:= \

LOCAL_MODULE_TAGS := optional

LOCAL_SHARED_LIBRARIES := libcutils libutils

LOCAL_STATIC_LIBRARIES := \
    libvideoeditor_osal
LOCAL_SHARED_LIBRARIES := \
    libcutils             \
    libutils              \
    libvideoeditor_osal   \

LOCAL_C_INCLUDES += \
    $(TOP)/frameworks/av/libvideoeditor/osal/inc \
+17 −6
Original line number Diff line number Diff line
@@ -52,14 +52,25 @@ LOCAL_SRC_FILES:= \

LOCAL_MODULE_TAGS := optional

LOCAL_SHARED_LIBRARIES := libcutils libutils libaudioutils
LOCAL_SHARED_LIBRARIES :=       \
    libaudioflinger             \
    libaudioutils               \
    libbinder                   \
    libcutils                   \
    libmedia                    \
    libstagefright              \
    libstagefright_foundation   \
    libstagefright_omx          \
    libutils                    \
    libvideoeditor_osal         \
    libvideoeditor_videofilters \
    libvideoeditorplayer        \

LOCAL_STATIC_LIBRARIES := \
    libvideoeditor_osal \
    libvideoeditor_3gpwriter \
    libstagefright_color_conversion \
    libvideoeditor_mcs \
    libvideoeditor_videofilters \
    libvideoeditor_stagefrightshells
    libvideoeditor_stagefrightshells \
    libvideoeditor_3gpwriter \

LOCAL_C_INCLUDES += \
    $(TOP)/frameworks/av/libvideoeditor/osal/inc \
@@ -84,5 +95,5 @@ LOCAL_CFLAGS += -Wno-multichar \
    -DM4xVSS_RESERVED_MOOV_DISK_SPACEno \
    -DDECODE_GIF_ON_SAVING

include $(BUILD_STATIC_LIBRARY)
include $(BUILD_SHARED_LIBRARY)
Loading