* Add dependencies in gpu tonemapper * Fix compile for hwc1 and gralloc1 CRs-Fixed: 2027609 Change-Id: I0f4303d8ea85d93be753e0031bcc3447ba407824
45 lines
2.0 KiB
Makefile
45 lines
2.0 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
include $(LOCAL_PATH)/../../../common.mk
|
|
ifeq ($(use_hwc2),false)
|
|
|
|
LOCAL_MODULE := hwcomposer.$(TARGET_BOARD_PLATFORM)
|
|
|
|
ifneq ($(TARGET_IS_HEADLESS), true)
|
|
LOCAL_MODULE_PATH_32 := $(TARGET_OUT_VENDOR)/lib
|
|
LOCAL_MODULE_PATH_64 := $(TARGET_OUT_VENDOR)/lib64
|
|
endif
|
|
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := $(common_includes)
|
|
LOCAL_HEADER_LIBRARIES := display_headers
|
|
|
|
LOCAL_CFLAGS := $(common_flags) -Wno-missing-field-initializers -Wno-unused-parameter \
|
|
-std=c++11 -fcolor-diagnostics -Wno-sign-conversion -DLOG_TAG=\"SDM\"
|
|
LOCAL_CLANG := true
|
|
|
|
LOCAL_SHARED_LIBRARIES := libsdmcore libqservice libbinder libhardware libhardware_legacy \
|
|
libutils libcutils libsync libmemalloc libqdutils libdl \
|
|
libpowermanager libsdmutils libgpu_tonemapper libc++ liblog \
|
|
libdrmutils libui
|
|
|
|
LOCAL_SRC_FILES := hwc_session.cpp \
|
|
hwc_display.cpp \
|
|
hwc_display_null.cpp \
|
|
hwc_display_primary.cpp \
|
|
hwc_display_external.cpp \
|
|
hwc_display_virtual.cpp \
|
|
hwc_debugger.cpp \
|
|
hwc_buffer_allocator.cpp \
|
|
hwc_buffer_sync_handler.cpp \
|
|
hwc_color_manager.cpp \
|
|
blit_engine_c2d.cpp \
|
|
cpuhint.cpp \
|
|
hwc_tonemapper.cpp \
|
|
hwc_socket_handler.cpp \
|
|
hwc_display_external_test.cpp
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
endif
|