You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android.hardware.graphics.composer@2.2-service
|
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
|
|
LOCAL_LICENSE_CONDITIONS := notice
|
|
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../../../NOTICE
|
|
LOCAL_VENDOR_MODULE := true
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_CFLAGS := -Wall -Werror -DLOG_TAG=\"ComposerHal\"
|
|
LOCAL_SRC_FILES := service.cpp
|
|
LOCAL_INIT_RC := android.hardware.graphics.composer@2.2-service.rc
|
|
LOCAL_HEADER_LIBRARIES := android.hardware.graphics.composer@2.2-passthrough
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
android.hardware.graphics.composer@2.1 \
|
|
android.hardware.graphics.composer@2.2 \
|
|
android.hardware.graphics.composer@2.1-resources \
|
|
android.hardware.graphics.composer@2.2-resources \
|
|
libbase \
|
|
libbinder \
|
|
libcutils \
|
|
libfmq \
|
|
libhardware \
|
|
libhidlbase \
|
|
libhwc2on1adapter \
|
|
libhwc2onfbadapter \
|
|
liblog \
|
|
libsync \
|
|
libutils
|
|
|
|
ifdef TARGET_USES_DISPLAY_RENDER_INTENTS
|
|
LOCAL_CFLAGS += -DUSES_DISPLAY_RENDER_INTENTS
|
|
endif
|
|
|
|
include $(BUILD_EXECUTABLE)
|