Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 1 | # Copyright (C) 2007 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 15 | LOCAL_PATH := $(call my-dir) |
| 16 | include $(CLEAR_VARS) |
| 17 | |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 18 | LOCAL_SRC_FILES := \ |
| 19 | events.cpp \ |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 20 | graphics.cpp \ |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 21 | graphics_drm.cpp \ |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 22 | graphics_fbdev.cpp \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 23 | graphics_overlay.cpp \ |
Ethan Yonker | b386f71 | 2017-01-20 14:30:28 -0600 | [diff] [blame] | 24 | resources.cpp |
Ethan Yonker | a59da09 | 2015-10-13 19:35:05 -0500 | [diff] [blame] | 25 | |
| 26 | LOCAL_C_INCLUDES := external/libcxx/include external/libpng |
Dees Troy | 62b75ab | 2014-05-02 13:20:33 +0000 | [diff] [blame] | 27 | |
| 28 | ifeq ($(TW_TARGET_USES_QCOM_BSP), true) |
| 29 | LOCAL_CFLAGS += -DMSM_BSP |
Ethan Yonker | b386f71 | 2017-01-20 14:30:28 -0600 | [diff] [blame] | 30 | LOCAL_SRC_FILES += graphics_overlay.cpp |
Dees Troy | 62b75ab | 2014-05-02 13:20:33 +0000 | [diff] [blame] | 31 | ifeq ($(TARGET_PREBUILT_KERNEL),) |
| 32 | LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 33 | LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include |
| 34 | else |
Kra1o5 | 0024e38 | 2014-12-17 01:49:00 +0100 | [diff] [blame] | 35 | ifeq ($(TARGET_CUSTOM_KERNEL_HEADERS),) |
| 36 | LOCAL_C_INCLUDES += $(commands_recovery_local_path)/minui/include |
| 37 | else |
| 38 | LOCAL_C_INCLUDES += $(TARGET_CUSTOM_KERNEL_HEADERS) |
| 39 | endif |
Dees Troy | 62b75ab | 2014-05-02 13:20:33 +0000 | [diff] [blame] | 40 | endif |
| 41 | else |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 42 | LOCAL_C_INCLUDES += $(commands_recovery_local_path)/minui/include |
Ethan Yonker | a59da09 | 2015-10-13 19:35:05 -0500 | [diff] [blame] | 43 | # The header files required for adf graphics can cause compile errors |
| 44 | # with adf graphics. |
| 45 | LOCAL_SRC_FILES += graphics_adf.cpp |
| 46 | LOCAL_WHOLE_STATIC_LIBRARIES += libadf |
Dees Troy | 62b75ab | 2014-05-02 13:20:33 +0000 | [diff] [blame] | 47 | endif |
| 48 | |
Kra1o5 | de50c5f | 2015-04-23 21:46:36 +0200 | [diff] [blame] | 49 | ifeq ($(TW_NEW_ION_HEAP), true) |
| 50 | LOCAL_CFLAGS += -DNEW_ION_HEAP |
| 51 | endif |
| 52 | |
Trevor Drake | fee324f | 2015-02-26 15:57:58 +0000 | [diff] [blame] | 53 | LOCAL_STATIC_LIBRARIES += libpng |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 54 | LOCAL_WHOLE_STATIC_LIBRARIES += \ |
| 55 | libdrm |
| 56 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
| 57 | LOCAL_CFLAGS += -DHAS_LIBSYNC |
| 58 | LOCAL_WHOLE_STATIC_LIBRARIES += libsync_recovery |
| 59 | endif |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 60 | |
Tianjie Xu | 0a59956 | 2017-03-28 20:11:15 +0000 | [diff] [blame] | 61 | LOCAL_STATIC_LIBRARIES := \ |
| 62 | libpng \ |
| 63 | libbase |
| 64 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 65 | LOCAL_CFLAGS := -Werror -std=c++14 |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 66 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/include |
| 67 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
Greg Hackmann | 41909dd | 2014-04-25 10:39:50 -0700 | [diff] [blame] | 68 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 69 | LOCAL_MODULE := libminui |
| 70 | |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 71 | LOCAL_CLANG := true |
Elliott Hughes | 01a4d08 | 2015-03-24 15:21:48 -0700 | [diff] [blame] | 72 | |
Doug Zongker | 9c5efe6 | 2012-07-11 13:21:02 -0700 | [diff] [blame] | 73 | # This used to compare against values in double-quotes (which are just |
| 74 | # ordinary characters in this context). Strip double-quotes from the |
| 75 | # value so that either will work. |
| 76 | |
Tony Kuo | fd778e3 | 2015-02-05 21:25:56 +0800 | [diff] [blame] | 77 | ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),ABGR_8888) |
| 78 | LOCAL_CFLAGS += -DRECOVERY_ABGR |
| 79 | endif |
Kra1o5 | 7756859 | 2015-10-14 18:09:54 +0200 | [diff] [blame] | 80 | ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBA_8888) |
| 81 | LOCAL_CFLAGS += -DRECOVERY_RGBA |
| 82 | endif |
Doug Zongker | 9c5efe6 | 2012-07-11 13:21:02 -0700 | [diff] [blame] | 83 | ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBX_8888) |
Michael Ward | 9d1bcdf | 2011-06-22 14:30:34 -0700 | [diff] [blame] | 84 | LOCAL_CFLAGS += -DRECOVERY_RGBX |
| 85 | endif |
Doug Zongker | 9c5efe6 | 2012-07-11 13:21:02 -0700 | [diff] [blame] | 86 | ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),BGRA_8888) |
Michael Ward | 9d1bcdf | 2011-06-22 14:30:34 -0700 | [diff] [blame] | 87 | LOCAL_CFLAGS += -DRECOVERY_BGRA |
Doug Zongker | be3e6f1 | 2011-01-13 16:43:44 -0800 | [diff] [blame] | 88 | endif |
| 89 | |
Doug Zongker | c560a67 | 2012-12-18 16:31:27 -0800 | [diff] [blame] | 90 | ifneq ($(TARGET_RECOVERY_OVERSCAN_PERCENT),) |
| 91 | LOCAL_CFLAGS += -DOVERSCAN_PERCENT=$(TARGET_RECOVERY_OVERSCAN_PERCENT) |
| 92 | else |
| 93 | LOCAL_CFLAGS += -DOVERSCAN_PERCENT=0 |
| 94 | endif |
| 95 | |
Matt Mower | 4a5db2d | 2014-01-20 16:14:25 -0600 | [diff] [blame] | 96 | ifneq ($(TW_BRIGHTNESS_PATH),) |
| 97 | LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=\"$(TW_BRIGHTNESS_PATH)\" |
| 98 | endif |
| 99 | ifneq ($(TW_MAX_BRIGHTNESS),) |
| 100 | LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS) |
| 101 | else |
| 102 | LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=255 |
| 103 | endif |
| 104 | ifneq ($(TW_NO_SCREEN_BLANK),) |
| 105 | LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK |
Ethan Chen | 0940e41 | 2013-10-22 13:48:50 -0700 | [diff] [blame] | 106 | endif |
maxwen | 39624d4 | 2015-12-01 22:02:07 +0100 | [diff] [blame] | 107 | ifneq ($(BOARD_USE_CUSTOM_RECOVERY_FONT),) |
| 108 | LOCAL_CFLAGS += -DBOARD_USE_CUSTOM_RECOVERY_FONT=$(BOARD_USE_CUSTOM_RECOVERY_FONT) |
| 109 | endif |
Ethan Yonker | 39662b2 | 2017-05-23 08:34:02 -0500 | [diff] [blame] | 110 | ifeq ($(wildcard system/core/healthd/animation.h),) |
| 111 | TARGET_GLOBAL_CFLAGS += -DTW_NO_MINUI_CUSTOM_FONTS |
| 112 | CLANG_TARGET_GLOBAL_CFLAGS += -DTW_NO_MINUI_CUSTOM_FONTS |
Ethan Yonker | 84d61ce | 2017-05-10 16:11:35 -0500 | [diff] [blame] | 113 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 114 | include $(BUILD_STATIC_LIBRARY) |
Dees Troy | 62b75ab | 2014-05-02 13:20:33 +0000 | [diff] [blame] | 115 | |
Ajay Dudani | 9905f3a | 2015-02-04 16:49:44 -0800 | [diff] [blame] | 116 | # Used by OEMs for factory test images. |
Dees Troy | 62b75ab | 2014-05-02 13:20:33 +0000 | [diff] [blame] | 117 | include $(CLEAR_VARS) |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 118 | LOCAL_CLANG := true |
Dees Troy | 62b75ab | 2014-05-02 13:20:33 +0000 | [diff] [blame] | 119 | LOCAL_MODULE := libminui |
Ajay Dudani | 9905f3a | 2015-02-04 16:49:44 -0800 | [diff] [blame] | 120 | LOCAL_WHOLE_STATIC_LIBRARIES += libminui |
Tianjie Xu | 0a59956 | 2017-03-28 20:11:15 +0000 | [diff] [blame] | 121 | LOCAL_SHARED_LIBRARIES := \ |
| 122 | libpng \ |
| 123 | libbase |
| 124 | |
Tianjie Xu | 17e316c | 2016-09-28 11:42:17 -0700 | [diff] [blame] | 125 | LOCAL_CFLAGS := -Werror |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 126 | |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 127 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/include |
| 128 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
Dees Troy | 62b75ab | 2014-05-02 13:20:33 +0000 | [diff] [blame] | 129 | include $(BUILD_SHARED_LIBRARY) |
Ethan Yonker | a59da09 | 2015-10-13 19:35:05 -0500 | [diff] [blame] | 130 | |
| 131 | include $(CLEAR_VARS) |
| 132 | LOCAL_MODULE := minuitest |
| 133 | LOCAL_MODULE_TAGS := optional |
| 134 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN) |
| 135 | LOCAL_SRC_FILES := main.cpp |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 136 | LOCAL_SHARED_LIBRARIES := libbinder libminui libpng libz libutils libstdc++ libcutils liblog libm libc |
Ethan Yonker | a59da09 | 2015-10-13 19:35:05 -0500 | [diff] [blame] | 137 | LOCAL_C_INCLUDES := external/libcxx/include external/libpng |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 138 | ifneq ($(TARGET_ARCH), arm64) |
| 139 | ifneq ($(TARGET_ARCH), x86_64) |
| 140 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker |
| 141 | else |
| 142 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 143 | endif |
| 144 | else |
| 145 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 146 | endif |
Ethan Yonker | a59da09 | 2015-10-13 19:35:05 -0500 | [diff] [blame] | 147 | include $(BUILD_EXECUTABLE) |