blob: 1e87cf0471d6a48280b02ba78412e2e89e34b767 [file] [log] [blame]
John Grossmand72031c2012-02-09 15:09:05 -08001LOCAL_PATH:= $(call my-dir)
2#
3# libaah_rtp
4#
5
6include $(CLEAR_VARS)
7
8LOCAL_MODULE := libaah_rtp
9LOCAL_MODULE_TAGS := optional
10
11LOCAL_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
22LOCAL_C_INCLUDES := \
23 frameworks/base/include \
John Grossmand72031c2012-02-09 15:09:05 -080024 frameworks/base/media \
James Donge1dea482012-03-12 14:37:53 -070025 frameworks/base/media/libstagefright \
26 frameworks/native/include/media/openmax
John Grossmand72031c2012-02-09 15:09:05 -080027
28LOCAL_SHARED_LIBRARIES := \
29 libcommon_time_client \
30 libbinder \
31 libmedia \
32 libstagefright \
33 libstagefright_foundation \
34 libutils
35
36LOCAL_LDLIBS := \
37 -lpthread
38
39include $(BUILD_SHARED_LIBRARY)
40