Chia-I Wu | 6c8257f | 2018-02-28 12:24:42 -0800 | [diff] [blame^] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.graphics.composer@2.2-service |
| 5 | LOCAL_VENDOR_MODULE := true |
| 6 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 7 | LOCAL_CFLAGS := -Wall -Werror -DLOG_TAG=\"ComposerHal\" |
| 8 | LOCAL_SRC_FILES := service.cpp |
| 9 | LOCAL_INIT_RC := android.hardware.graphics.composer@2.2-service.rc |
| 10 | LOCAL_HEADER_LIBRARIES := android.hardware.graphics.composer@2.2-passthrough |
| 11 | LOCAL_SHARED_LIBRARIES := \ |
| 12 | android.hardware.graphics.composer@2.1 \ |
| 13 | android.hardware.graphics.composer@2.2 \ |
| 14 | android.hardware.graphics.mapper@2.0 \ |
| 15 | libbase \ |
| 16 | libbinder \ |
| 17 | libcutils \ |
| 18 | libfmq \ |
| 19 | libhardware \ |
| 20 | libhidlbase \ |
| 21 | libhidltransport \ |
| 22 | libhwc2on1adapter \ |
| 23 | libhwc2onfbadapter \ |
| 24 | liblog \ |
| 25 | libsync \ |
| 26 | libutils |
| 27 | |
| 28 | ifdef TARGET_USES_DISPLAY_RENDER_INTENTS |
| 29 | LOCAL_CFLAGS += -DUSES_DISPLAY_RENDER_INTENTS |
| 30 | endif |
| 31 | |
| 32 | include $(BUILD_EXECUTABLE) |