and deleted the duplicate header files in /frameworks/base o related-to-bug: 6044887 Change-Id: I17e0692d9a9b5c8796ded36677c833ca8ab36795
41 lines
778 B
Makefile
41 lines
778 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
#
|
|
# libaah_rtp
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libaah_rtp
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := \
|
|
aah_decoder_pump.cpp \
|
|
aah_rx_player.cpp \
|
|
aah_rx_player_core.cpp \
|
|
aah_rx_player_ring_buffer.cpp \
|
|
aah_rx_player_substream.cpp \
|
|
aah_tx_packet.cpp \
|
|
aah_tx_player.cpp \
|
|
aah_tx_sender.cpp \
|
|
pipe_event.cpp
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
frameworks/base/include \
|
|
frameworks/base/media \
|
|
frameworks/base/media/libstagefright \
|
|
frameworks/native/include/media/openmax
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcommon_time_client \
|
|
libbinder \
|
|
libmedia \
|
|
libstagefright \
|
|
libstagefright_foundation \
|
|
libutils
|
|
|
|
LOCAL_LDLIBS := \
|
|
-lpthread
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|