Files
frameworks_base/media/tests/audiotests/Android.mk
Dimitry Ivanov 5a06e3747d Add missing liblog dependency
Bug: http://b/27171986
Change-Id: I40b93ac0d4bfacfc38c08b5dbc5d2b3358a976cb
2016-02-12 16:44:33 -08:00

25 lines
420 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE:= shared_mem_test
LOCAL_SRC_FILES := \
shared_mem_test.cpp
LOCAL_SHARED_LIBRARIES := \
libc \
liblog \
libcutils \
libutils \
libbinder \
libhardware_legacy \
libmedia
LOCAL_MODULE_TAGS := tests
LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code
include $(BUILD_EXECUTABLE)