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
36 lines
723 B
Makefile
36 lines
723 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
AudioFlinger.cpp \
|
|
AudioMixer.cpp.arm \
|
|
AudioResampler.cpp.arm \
|
|
AudioResamplerSinc.cpp.arm \
|
|
AudioResamplerCubic.cpp.arm \
|
|
AudioPolicyService.cpp \
|
|
AudioBufferProvider.cpp
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
system/media/audio_effects/include
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcommon_time_client \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libmedia \
|
|
libhardware \
|
|
libhardware_legacy \
|
|
libeffects \
|
|
libdl \
|
|
libpowermanager
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libcpustats \
|
|
libmedia_helper
|
|
|
|
LOCAL_MODULE:= libaudioflinger
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|