6dbdc40e9a
The problem is that the audio HAL fails to acquire the wake lock when playing the notification. This is because of a change that removed the mediaserver process form the system group for honeycomb. The fix consists in requesting the wake lock from PowerManagerService when AudioFlinger mixer wakes up. A consequence of this change is that audio HALs or pcm drivers do not have to hold wake locks anymore as in the past. Change-Id: I4fb3cc84816c9c408ab7fec75886baf801e1ecb5
34 lines
660 B
Makefile
34 lines
660 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
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
system/media/audio_effects/include
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libmedia \
|
|
libhardware \
|
|
libhardware_legacy \
|
|
libeffects \
|
|
libdl \
|
|
libpowermanager
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libcpustats \
|
|
libmedia_helper
|
|
|
|
LOCAL_MODULE:= libaudioflinger
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|