mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
6e160bed3d
Conflicts: android/alsa.mk android/app.mk android/app_plugin.mk android/audio.mk android/audioconvert.mk android/decodebin.mk android/decodebin2.mk android/gdp.mk android/interfaces.mk android/netbuffer.mk android/pbutils.mk android/playbin.mk android/queue2.mk android/riff.mk android/rtp.mk android/rtsp.mk android/sdp.mk android/tag.mk android/tcp.mk android/typefindfunctions.mk android/video.mk
68 lines
1.6 KiB
Makefile
68 lines
1.6 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
GST_PBUTILS_DIR := gst-libs/gst/pbutils/
|
|
|
|
gst_pbutils_COPY_HEADERS_TO := gstreamer-0.11/gst/pbutils
|
|
gst_pbutils_COPY_HEADERS_BASE := \
|
|
gst-libs/gst/pbutils/descriptions.h \
|
|
gst-libs/gst/pbutils/install-plugins.h \
|
|
gst-libs/gst/pbutils/missing-plugins.h \
|
|
gst-libs/gst/pbutils/pbutils.h \
|
|
gst-libs/gst/pbutils/pbutils-enumtypes.h
|
|
|
|
gst_pbutils_COPY_HEADERS := $(addprefix ../,$(gst_pbutils_COPY_HEADERS_BASE))
|
|
|
|
|
|
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
|
|
BUILT_SOURCES = \
|
|
pbutils-enumtypes.c \
|
|
pbutils-enumtypes.h \
|
|
pbutils-marshal.c \
|
|
pbutils-marshal.h
|
|
|
|
LOCAL_SRC_FILES := \
|
|
gstpluginsbaseversion.c \
|
|
pbutils.c \
|
|
codec-utils.c \
|
|
descriptions.c \
|
|
encoding-profile.c \
|
|
encoding-target.c \
|
|
install-plugins.c \
|
|
missing-plugins.c \
|
|
gstdiscoverer.c \
|
|
gstdiscoverer-types.c \
|
|
pbutils-enumtypes.c \
|
|
pbutils-marshal.c
|
|
|
|
LOCAL_SRC_FILES := $(addprefix ../$(GST_PBUTILS_DIR),$(LOCAL_SRC_FILES))
|
|
|
|
$(BUILT_SOURCES):
|
|
make -C $(GST_PLUGINS_BASE_TOP)/$(GST_PBUTILS_DIR) $@
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libgstvideo-0.11 \
|
|
libgstreamer-0.11 \
|
|
libgstbase-0.11 \
|
|
libglib-2.0 \
|
|
libgthread-2.0 \
|
|
libgmodule-2.0 \
|
|
libgobject-2.0
|
|
|
|
LOCAL_MODULE:= libgstpbutils-0.11
|
|
LOCAL_CFLAGS := -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_pbutils_COPY_HEADERS_TO)
|
|
LOCAL_COPY_HEADERS := $(gst_pbutils_COPY_HEADERS)
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|