android: loader: prefix static libraries with libmesa_*

Will make it easier on us as CleanSpec.mk comes along and improves
consistency across the Android build.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
Emil Velikov 2014-08-04 18:59:58 +01:00
parent db4d7229bc
commit 73121a34d4
3 changed files with 4 additions and 4 deletions

View file

@ -44,7 +44,7 @@ LOCAL_C_INCLUDES := \
$(DRM_GRALLOC_TOP)
LOCAL_STATIC_LIBRARIES := \
libloader
libmesa_loader
LOCAL_MODULE := libmesa_egl_dri2

View file

@ -152,7 +152,7 @@ endif # MESA_BUILD_GALLIUM
LOCAL_STATIC_LIBRARIES := \
$(LOCAL_STATIC_LIBRARIES) \
libloader
libmesa_loader
LOCAL_MODULE := libGLES_mesa
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/egl

View file

@ -25,7 +25,7 @@ LOCAL_PATH := $(call my-dir)
include $(LOCAL_PATH)/Makefile.sources
# ---------------------------------------
# Build libloader
# Build libmesa_loader
# ---------------------------------------
include $(CLEAR_VARS)
@ -40,7 +40,7 @@ else
LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/libdrm
endif
LOCAL_MODULE := libloader
LOCAL_MODULE := libmesa_loader
include $(MESA_COMMON_MK)
include $(BUILD_STATIC_LIBRARY)