d5da9de816
Changes in patch set 2: - add call to ProcessState::self()->startThreadPool() - remove dead code AudioSystem::get_audio_flinger - use simpler MemoryDealer isntead of MemoryHeapBase - AudioTrack now must be sp<> instead of raw pointer - use new constants from audio.h - change LOGx macros to ALOGx - fix file permission on Android.mk Bug: 2801375 Change-Id: I899b08e0aa91deca328523f66f71e667011b4522
22 lines
356 B
Makefile
22 lines
356 B
Makefile
ifeq ($(TARGET_ARCH),arm)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE:= shared_mem_test
|
|
LOCAL_SRC_FILES := \
|
|
shared_mem_test.cpp
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libc \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libhardware_legacy \
|
|
libmedia
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|