mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +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
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
|
|
tcp_LOCAL_SRC_FILES_BASE:= \
|
|
gst/tcp/gsttcpplugin.c \
|
|
gst/tcp/gsttcp.c \
|
|
gst/tcp/gstmultifdsink.c \
|
|
gst/tcp/gsttcpclientsrc.c \
|
|
gst/tcp/gsttcpclientsink.c \
|
|
gst/tcp/gsttcpserversrc.c \
|
|
gst/tcp/gsttcpserversink.c \
|
|
gst/tcp/gsttcp-enumtypes.c \
|
|
gst/tcp/gsttcp-marshal.c
|
|
|
|
LOCAL_SRC_FILES:= $(addprefix ../,$(tcp_LOCAL_SRC_FILES_BASE))
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libgstreamer-0.11 \
|
|
libgstbase-0.11 \
|
|
libglib-2.0 \
|
|
libgthread-2.0 \
|
|
libgmodule-2.0 \
|
|
libgobject-2.0 \
|
|
libgstdataprotocol-0.11
|
|
|
|
LOCAL_MODULE:= libgsttcp
|
|
|
|
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
|
|
|
|
#It's a gstreamer plugins, and it must be installed on ..../lib/gstreamer-0.11
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/gstreamer-0.11
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|