diff options
Diffstat (limited to 'qahw/Android.mk')
-rw-r--r-- | qahw/Android.mk | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/qahw/Android.mk b/qahw/Android.mk index decd4c63..7cd908a5 100644 --- a/qahw/Android.mk +++ b/qahw/Android.mk @@ -5,11 +5,9 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) -libqahw-inc := $(LOCAL_PATH)/inc - LOCAL_MODULE := libqahwwrapper LOCAL_MODULE_TAGS := optional -LOCAL_C_INCLUDES := $(libqahw-inc) +LOCAL_C_INCLUDES := $(LOCAL_PATH)/inc LOCAL_HEADER_LIBRARIES := libutils_headers \ libsystem_headers \ @@ -27,10 +25,6 @@ LOCAL_SHARED_LIBRARIES := \ LOCAL_CFLAGS += -Wall -Werror -LOCAL_COPY_HEADERS_TO := mm-audio/qahw/inc -LOCAL_COPY_HEADERS := inc/qahw.h -LOCAL_COPY_HEADERS += inc/qahw_effect_api.h - LOCAL_PROPRIETARY_MODULE := true LOCAL_VENDOR_MODULE := true @@ -39,5 +33,12 @@ LOCAL_SANITIZE := integer_overflow endif include $(BUILD_SHARED_LIBRARY) +include $(CLEAR_VARS) + +LOCAL_MODULE := libqahw_headers +LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/inc +LOCAL_PROPRIETARY_MODULE := true + +include $(BUILD_HEADER_LIBRARY) endif endif |