This CL replaces all LOCAL_MODULE_PATH_* definitions for vendor shared libraries with LOCAL_VENDOR_MODULE := true instead. This appropriately generates sanitized versions of these libraries to /data/asan/* while generating the stock versions in /vendor/lib* as desired. Needed for ASAN builds to work correctly. Bug: 37740897 Test: m -j40 && SANITIZE_TARGET="address" m -j40 # shared libs in $ANDROID_PRODUCT_OUT/vendor/lib* do not contain asan symbols, while the ones in $ANDROID_PRODUCT_OUT/data/asan/vendor/lib* do. Change-Id: If6a495dd153c47f929de047fd48039b990348720 (cherry picked from commit e872612127cfbf55ceba01e9860e0acc47d64447)
42 lines
866 B
Makefile
42 lines
866 B
Makefile
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),)
|
|
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := liblocation_api
|
|
LOCAL_VENDOR_MODULE := true
|
|
LOCAL_MODULE_OWNER := qti
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libutils \
|
|
libcutils \
|
|
libgps.utils \
|
|
libdl \
|
|
liblog
|
|
|
|
LOCAL_SRC_FILES += \
|
|
LocationAPI.cpp \
|
|
LocationAPIClientBase.cpp
|
|
|
|
LOCAL_CFLAGS += \
|
|
-fno-short-enums
|
|
|
|
LOCAL_HEADER_LIBRARIES := \
|
|
libloc_pla_headers \
|
|
libgps.utils_headers
|
|
|
|
LOCAL_PRELINK_MODULE := false
|
|
|
|
LOCAL_CFLAGS += $(GNSS_CFLAGS)
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := liblocation_api_headers
|
|
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
|
|
include $(BUILD_HEADER_LIBRARY)
|
|
|
|
endif # not BUILD_TINY_ANDROID
|
|
endif # BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE
|