1 LOCAL_PATH:= $(call my-dir) 2 # 3 # libaah_rtp 4 # 5 6 include $(CLEAR_VARS) 7 8 LOCAL_MODULE := libaah_rtp 9 LOCAL_MODULE_TAGS := optional 10 11 LOCAL_SRC_FILES := \ 12 aah_decoder_pump.cpp \ 13 aah_rx_player.cpp \ 14 aah_rx_player_core.cpp \ 15 aah_rx_player_ring_buffer.cpp \ 16 aah_rx_player_substream.cpp \ 17 aah_tx_packet.cpp \ 18 aah_tx_player.cpp \ 19 aah_tx_sender.cpp \ 20 pipe_event.cpp 21 22 LOCAL_C_INCLUDES := \ 23 frameworks/av/include \ 24 frameworks/av/media \ 25 frameworks/av/media/libstagefright \ 26 frameworks/native/include/media/openmax 27 28 LOCAL_SHARED_LIBRARIES := \ 29 libcommon_time_client \ 30 libbinder \ 31 libmedia \ 32 libmedia_native \ 33 libstagefright \ 34 libstagefright_foundation \ 35 libutils 36 37 LOCAL_LDLIBS := \ 38 -lpthread 39 40 include $(BUILD_SHARED_LIBRARY) 41