Home | History | Annotate | Download | only in rtp
      1 LOCAL_PATH := $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES := \
      5 	src/rtcp.cpp \
      6  	src/rtcp_decoder.cpp \
      7  	src/rtcp_encoder.cpp
      8 
      9 
     10 LOCAL_MODULE := librtprtcp
     11 
     12 LOCAL_CFLAGS :=  $(PV_CFLAGS)
     13 
     14 
     15 
     16 LOCAL_STATIC_LIBRARIES := 
     17 
     18 LOCAL_SHARED_LIBRARIES := 
     19 
     20 LOCAL_C_INCLUDES := \
     21 	$(PV_TOP)/protocols/rtp/src \
     22  	$(PV_TOP)/protocols/rtp/src \
     23  	$(PV_TOP)/protocols/rtp/include \
     24  	$(PV_INCLUDES)
     25 
     26 LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO)
     27 
     28 LOCAL_COPY_HEADERS := \
     29 	src/rtprtcp.h \
     30  	src/rtcp.h \
     31  	src/rtcp_decoder.h \
     32  	src/rtcp_encoder.h \
     33  	src/rtcp_constants.h
     34 
     35 include $(BUILD_STATIC_LIBRARY)
     36