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 |
Bob Badour | b224b36 | 2021-02-12 20:13:01 -0800 | [diff] [blame] | 5 | LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 |
| 6 | LOCAL_LICENSE_CONDITIONS := notice |
| 7 | LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../../../NOTICE |
Chia-I Wu | 6c8257f | 2018-02-28 12:24:42 -0800 | [diff] [blame] | 8 | LOCAL_VENDOR_MODULE := true |
| 9 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 10 | LOCAL_CFLAGS := -Wall -Werror -DLOG_TAG=\"ComposerHal\" |
| 11 | LOCAL_SRC_FILES := service.cpp |
| 12 | LOCAL_INIT_RC := android.hardware.graphics.composer@2.2-service.rc |
| 13 | LOCAL_HEADER_LIBRARIES := android.hardware.graphics.composer@2.2-passthrough |
| 14 | LOCAL_SHARED_LIBRARIES := \ |
| 15 | android.hardware.graphics.composer@2.1 \ |
| 16 | android.hardware.graphics.composer@2.2 \ |
Marissa Wall | a8c3130 | 2019-08-15 14:42:50 -0700 | [diff] [blame] | 17 | android.hardware.graphics.composer@2.1-resources \ |
| 18 | android.hardware.graphics.composer@2.2-resources \ |
Chia-I Wu | 6c8257f | 2018-02-28 12:24:42 -0800 | [diff] [blame] | 19 | libbase \ |
| 20 | libbinder \ |
| 21 | libcutils \ |
| 22 | libfmq \ |
| 23 | libhardware \ |
| 24 | libhidlbase \ |
Chia-I Wu | 6c8257f | 2018-02-28 12:24:42 -0800 | [diff] [blame] | 25 | libhwc2on1adapter \ |
| 26 | libhwc2onfbadapter \ |
| 27 | liblog \ |
| 28 | libsync \ |
| 29 | libutils |
| 30 | |
| 31 | ifdef TARGET_USES_DISPLAY_RENDER_INTENTS |
| 32 | LOCAL_CFLAGS += -DUSES_DISPLAY_RENDER_INTENTS |
| 33 | endif |
| 34 | |
| 35 | include $(BUILD_EXECUTABLE) |