mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
46ea9729df
Keep tracer base class in tracer and move core support into the utils module. Add a unstable-api guard to the tracer.h so that external modules would need to acknowledge the status by setting GST_USE_UNSTABLE_API.
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
|
|
plugin_LTLIBRARIES = libgstcoretracers.la
|
|
|
|
if HAVE_GETRUSAGE
|
|
RUSAGE_SOURCES = gstrusage.c
|
|
else
|
|
RUSAGE_SOURCES =
|
|
endif
|
|
|
|
libgstcoretracers_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_API_VERSION@.la
|
|
libgstcoretracers_la_SOURCES = \
|
|
gstlatency.c \
|
|
gstlog.c \
|
|
$(RUSAGE_SOURCES) \
|
|
gststats.c \
|
|
gsttracers.c
|
|
|
|
libgstcoretracers_la_CFLAGS = $(GST_OBJ_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API
|
|
libgstcoretracers_la_LIBADD = \
|
|
$(top_builddir)/gst/printf/libgstprintf.la \
|
|
$(GST_OBJ_LIBS)
|
|
libgstcoretracers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcoretracers_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstlatency.h \
|
|
gstlog.h \
|
|
gstrusage.h \
|
|
gststats.h
|
|
|
|
CLEANFILES = *.gcno *.gcda *.gcov *.gcov.out
|
|
|
|
%.c.gcov: .libs/libgstcoretracers_la-%.gcda %.c
|
|
$(GCOV) -b -f -o $^ > $@.out
|
|
|
|
gcov: $(libgstcoretracers_la_SOURCES:=.gcov)
|
|
|
|
Android.mk: Makefile.am
|
|
androgenizer -:PROJECT gstreamer -:SHARED libgstcoretracers -:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstcoretracers_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(libgstcoretracers_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstcoretracers_la_LDFLAGS) \
|
|
$(libgstcoretracers_la_LIBADD) \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:=$$\(TARGET_OUT\)/lib/gstreamer-@GST_API_VERSION@ \
|
|
> $@
|