libavc/test/decoder.mk
Harish Mahendrakar c59cd5d2be Moved ALOGE and android_errorWriteLog calls under #ifdef __ANDROID__
Also added shared library liblog to test\decoder.mk

Change-Id: If7793f849522dd3f93a5177bab91f4ea5ada41ad
2016-04-18 08:39:18 +05:30

13 lines
393 B
Makefile

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := avcdec
LOCAL_MODULE_TAGS := optional
LOCAL_CFLAGS := -DPROFILE_ENABLE -DARM -DMD5_DISABLE -fPIC
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../decoder $(LOCAL_PATH)/../common $(LOCAL_PATH)/decoder/
LOCAL_SRC_FILES := decoder/main.c
LOCAL_STATIC_LIBRARIES := libavcdec
LOCAL_SHARED_LIBRARIES := liblog
include $(BUILD_EXECUTABLE)