mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +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
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
#----------------------------------------
|
|
# include
|
|
gst_tag_COPY_HEADERS_TO := gstreamer-0.10/gst/tag
|
|
gst_tag_COPY_HEADERS := \
|
|
../gst-libs/gst/tag/gsttagdemux.h \
|
|
../gst-libs/gst/tag/tag.h
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
|
|
tag_LOCAL_SRC_FILES:= \
|
|
gst-libs/gst/tag/gstvorbistag.c \
|
|
gst-libs/gst/tag/gstid3tag.c \
|
|
gst-libs/gst/tag/gstxmptag.c \
|
|
gst-libs/gst/tag/gsttageditingprivate.c \
|
|
gst-libs/gst/tag/tags.c \
|
|
gst-libs/gst/tag/lang.c \
|
|
gst-libs/gst/tag/gsttagdemux.c
|
|
|
|
LOCAL_SRC_FILES:= $(addprefix ../,$(tag_LOCAL_SRC_FILES))
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libgstreamer-0.10 \
|
|
libgstbase-0.10 \
|
|
libglib-2.0 \
|
|
libgthread-2.0 \
|
|
libgmodule-2.0 \
|
|
libgobject-2.0
|
|
|
|
LOCAL_MODULE:= libgsttag-0.10
|
|
|
|
|
|
LOCAL_CFLAGS := -DHAVE_CONFIG_H -DGSTREAMER_BUILT_FOR_ANDROID \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
#
|
|
# define LOCAL_PRELINK_MODULE to false to not use pre-link map
|
|
#
|
|
LOCAL_PRELINK_MODULE := false
|
|
|
|
LOCAL_COPY_HEADERS_TO := $(gst_tag_COPY_HEADERS_TO)
|
|
LOCAL_COPY_HEADERS := $(gst_tag_COPY_HEADERS)
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|