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 \ |
Marissa Wall | a8c3130 | 2019-08-15 14:42:50 -0700 | [diff] [blame] | 14 | android.hardware.graphics.composer@2.1-resources \ |
| 15 | android.hardware.graphics.composer@2.2-resources \ |
Chia-I Wu | 6c8257f | 2018-02-28 12:24:42 -0800 | [diff] [blame] | 16 | libbase \ |
| 17 | libbinder \ |
| 18 | libcutils \ |
| 19 | libfmq \ |
| 20 | libhardware \ |
| 21 | libhidlbase \ |
Chia-I Wu | 6c8257f | 2018-02-28 12:24:42 -0800 | [diff] [blame] | 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) |