Indranil Chakraborty | 36e686a | 2018-04-05 12:05:02 +0530 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES := aacEncode.cpp |
| 5 | LOCAL_SRC_FILES += aacDecode.cpp |
| 6 | |
| 7 | LOCAL_C_INCLUDES := $(LOCAL_PATH) |
| 8 | LOCAL_C_INCLUDES += $(TOP)/external/aac/libAACenc/include |
| 9 | LOCAL_C_INCLUDES += $(TOP)/external/aac/libAACdec/include |
| 10 | LOCAL_C_INCLUDES += $(TOP)/external/aac/libSYS/include |
| 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := liblog |
| 13 | LOCAL_STATIC_LIBRARIES := libFraunhoferAAC |
| 14 | |
| 15 | LOCAL_32_BIT_ONLY := true |
| 16 | LOCAL_MODULE := libwfdaac |
| 17 | |
| 18 | include $(BUILD_SHARED_LIBRARY) |
Lubin Yin | acdb81b | 2018-11-28 11:52:34 -0800 | [diff] [blame^] | 19 | |
| 20 | include $(CLEAR_VARS) |
| 21 | |
| 22 | LOCAL_SRC_FILES := aacEncode.cpp |
| 23 | LOCAL_SRC_FILES += aacDecode.cpp |
| 24 | |
| 25 | LOCAL_C_INCLUDES := $(LOCAL_PATH) |
| 26 | LOCAL_C_INCLUDES += $(TOP)/external/aac/libAACenc/include |
| 27 | LOCAL_C_INCLUDES += $(TOP)/external/aac/libAACdec/include |
| 28 | LOCAL_C_INCLUDES += $(TOP)/external/aac/libSYS/include |
| 29 | |
| 30 | LOCAL_HEADER_LIBRARIES += libutils_headers |
| 31 | |
| 32 | LOCAL_SHARED_LIBRARIES := liblog |
| 33 | LOCAL_STATIC_LIBRARIES := libFraunhoferAAC |
| 34 | |
| 35 | LOCAL_PROPRIETARY_MODULE := true |
| 36 | |
| 37 | LOCAL_32_BIT_ONLY := true |
| 38 | LOCAL_MODULE := libwfdaac_proprietary |
| 39 | |
| 40 | include $(BUILD_SHARED_LIBRARY) |