1 LOCAL_PATH := $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_SRC_FILES := \ 5 src/pvmf_jb_event_notifier.cpp \ 6 src/pvmf_jb_firewall_pkts_impl.cpp \ 7 src/pvmf_jb_jitterbuffermisc.cpp \ 8 src/pvmf_jb_session_duration_timer.cpp \ 9 src/pvmf_jitter_buffer_impl.cpp \ 10 src/pvmf_rtcp_proto_impl.cpp \ 11 src/pvmf_rtcp_timer.cpp 12 13 14 LOCAL_MODULE := libpvjitterbuffer 15 16 LOCAL_CFLAGS := $(PV_CFLAGS) 17 18 19 20 LOCAL_STATIC_LIBRARIES := libosclbase 21 22 LOCAL_SHARED_LIBRARIES := 23 24 LOCAL_C_INCLUDES := \ 25 $(PV_TOP)/nodes/streaming/jitterbuffernode/jitterbuffer/common/src \ 26 $(PV_TOP)/nodes/streaming/jitterbuffernode/jitterbuffer/common/include \ 27 $(PV_TOP)/nodes/common/include \ 28 $(PV_TOP)/nodes/streaming/streamingmanager/plugins/mshttp/config \ 29 $(PV_TOP)/nodes/streaming/streamingmanager/include \ 30 $(PV_TOP)/protocols/rtp/src \ 31 $(PV_TOP)/nodes/streaming/common/include \ 32 $(PV_INCLUDES) 33 34 LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO) 35 36 LOCAL_COPY_HEADERS := \ 37 include/pvmf_jb_event_notifier.h \ 38 include/pvmf_jb_jitterbuffermisc.h \ 39 include/pvmf_jitter_buffer.h \ 40 include/pvmf_jitter_buffer_common_types.h \ 41 include/pvmf_jitter_buffer_factory.h 42 43 include $(BUILD_STATIC_LIBRARY) 44