blob: cb551c6c60173a60e4e82bfcf28483b6432ece1f [file] [log] [blame]
Chia-I Wu6c8257f2018-02-28 12:24:42 -08001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.graphics.composer@2.2-service
5LOCAL_VENDOR_MODULE := true
6LOCAL_MODULE_RELATIVE_PATH := hw
7LOCAL_CFLAGS := -Wall -Werror -DLOG_TAG=\"ComposerHal\"
8LOCAL_SRC_FILES := service.cpp
9LOCAL_INIT_RC := android.hardware.graphics.composer@2.2-service.rc
10LOCAL_HEADER_LIBRARIES := android.hardware.graphics.composer@2.2-passthrough
11LOCAL_SHARED_LIBRARIES := \
12 android.hardware.graphics.composer@2.1 \
13 android.hardware.graphics.composer@2.2 \
Marissa Walla8c31302019-08-15 14:42:50 -070014 android.hardware.graphics.composer@2.1-resources \
15 android.hardware.graphics.composer@2.2-resources \
Chia-I Wu6c8257f2018-02-28 12:24:42 -080016 libbase \
17 libbinder \
18 libcutils \
19 libfmq \
20 libhardware \
21 libhidlbase \
22 libhidltransport \
23 libhwc2on1adapter \
24 libhwc2onfbadapter \
25 liblog \
26 libsync \
27 libutils
28
29ifdef TARGET_USES_DISPLAY_RENDER_INTENTS
30LOCAL_CFLAGS += -DUSES_DISPLAY_RENDER_INTENTS
31endif
32
33include $(BUILD_EXECUTABLE)