Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 2 | include $(LOCAL_PATH)/../common.mk |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 3 | include $(CLEAR_VARS) |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame^] | 4 | |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 5 | LOCAL_MODULE := hwcomposer.$(TARGET_BOARD_PLATFORM) |
| 6 | LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw |
| 7 | LOCAL_MODULE_TAGS := optional |
| 8 | LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes) |
| 9 | LOCAL_SHARED_LIBRARIES := $(common_libs) libEGL liboverlay libgenlock \ |
Saurabh Shah | 56f610d | 2012-08-07 15:27:06 -0700 | [diff] [blame] | 10 | libexternal libqdutils libhardware_legacy \ |
| 11 | libdl libmemalloc libqservice |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame^] | 12 | LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdhwcomposer\" |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 13 | LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) |
Naseer Ahmed | 4c588a2 | 2012-07-31 19:12:17 -0700 | [diff] [blame] | 14 | LOCAL_SRC_FILES := hwc.cpp \ |
| 15 | hwc_video.cpp \ |
| 16 | hwc_utils.cpp \ |
Naseer Ahmed | 4c588a2 | 2012-07-31 19:12:17 -0700 | [diff] [blame] | 17 | hwc_uevents.cpp \ |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 18 | hwc_vsync.cpp \ |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 19 | hwc_fbupdate.cpp \ |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame^] | 20 | hwc_mdpcomp.cpp |
Naseer Ahmed | 4c588a2 | 2012-07-31 19:12:17 -0700 | [diff] [blame] | 21 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 22 | include $(BUILD_SHARED_LIBRARY) |