b4eec28a20
Instead of injecting custom dependency into libsdmcore.so, provide a custom hwcomposer implementation that overrides the *unwanted* symbol before loading the vendor implementation. Change-Id: Icc6551f9260a0eb8a7f7a616588c65472a9366e9
12 lines
372 B
Makefile
12 lines
372 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := hwcomposer.qcom
|
|
LOCAL_VENDOR_MODULE := true
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SHARED_LIBRARIES := hwcomposer.$(TARGET_BOARD_PLATFORM)
|
|
LOCAL_SRC_FILES := display_builtin.cpp
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|