mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
030f639a8e
Remove the android/ top dir Fixe the Makefile.am to be androgenized To build gstreamer for android we are now using androgenizer which generates the needed Android.mk files. Androgenizer can be found here: http://git.collabora.co.uk/?p=user/derek/androgenizer.git
35 lines
818 B
Makefile
35 lines
818 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
|
|
queue2_LOCAL_SRC_FILES_BASE:= \
|
|
gst/playback/gstqueue2.c \
|
|
gst/playback/gstplay-marshal.c
|
|
|
|
LOCAL_SRC_FILES:= $(addprefix ../,$(queue2_LOCAL_SRC_FILES_BASE))
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libgstreamer-0.10 \
|
|
libgstbase-0.10 \
|
|
libglib-2.0 \
|
|
libgthread-2.0 \
|
|
libgmodule-2.0 \
|
|
libgobject-2.0 \
|
|
libgstpbutils-0.10
|
|
|
|
LOCAL_MODULE:= libgstqueue2
|
|
|
|
LOCAL_CFLAGS := -DHAVE_CONFIG_H \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
#
|
|
# define LOCAL_PRELINK_MODULE to false to not use pre-link map
|
|
#
|
|
LOCAL_PRELINK_MODULE := false
|
|
|
|
#It's a gstreamer plugins, and it must be installed on ..../lib/gstreamer-0.10
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/gstreamer-0.10
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|