John Grossman 232f869c99 De-AAH-ify the common time service.
Bulk name change to remove references to Android@Home from the common time
service in preparation for cleanup and up-integration into the master
branch.  Basically, aah_timesrv is now common_time.

Change-Id: I3d3db212f96e8ba171aa36b9c58e27e4a336cb0a
2012-02-03 17:43:21 -08:00

41 lines
788 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/include/media/stagefright/openmax \
frameworks/base/media \
frameworks/base/media/libstagefright
LOCAL_SHARED_LIBRARIES := \
libcommon_time_client \
libbinder \
libmedia \
libstagefright \
libstagefright_foundation \
libutils
LOCAL_LDLIBS := \
-lpthread
include $(BUILD_SHARED_LIBRARY)