blob: 824eec659d253c7fa585d8f533ef4d6c5ae77821 [file] [log] [blame]
Tao Bao0ecbd762017-01-16 21:16:58 -08001# 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 Projectc24a8e62009-03-03 19:28:42 -080015LOCAL_PATH := $(call my-dir)
Tao Bao99f0d9e2016-10-13 12:46:38 -070016
17# libminui (static library)
18# ===============================
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019include $(CLEAR_VARS)
20
Elliott Hughes07138192015-04-10 09:40:53 -070021LOCAL_SRC_FILES := \
22 events.cpp \
Elliott Hughes07cfb8f2015-04-10 13:12:05 -070023 graphics.cpp \
Stéphane Marchesin1a92c442015-06-29 20:05:48 -070024 graphics_drm.cpp \
Elliott Hughes07cfb8f2015-04-10 13:12:05 -070025 graphics_fbdev.cpp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -050026 graphics_overlay.cpp \
Ethan Yonkerb386f712017-01-20 14:30:28 -060027 resources.cpp
Ethan Yonkera59da092015-10-13 19:35:05 -050028
29LOCAL_C_INCLUDES := external/libcxx/include external/libpng
Dees Troy62b75ab2014-05-02 13:20:33 +000030
31ifeq ($(TW_TARGET_USES_QCOM_BSP), true)
32 LOCAL_CFLAGS += -DMSM_BSP
Ethan Yonkerb386f712017-01-20 14:30:28 -060033 LOCAL_SRC_FILES += graphics_overlay.cpp
Dees Troy62b75ab2014-05-02 13:20:33 +000034 ifeq ($(TARGET_PREBUILT_KERNEL),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -050035 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
36 LOCAL_REQUIRED_MODULES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
37 else
38 LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
39 endif
Dees Troy62b75ab2014-05-02 13:20:33 +000040 LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
41 else
Kra1o50024e382014-12-17 01:49:00 +010042 ifeq ($(TARGET_CUSTOM_KERNEL_HEADERS),)
Ethan Yonker58f21322018-08-24 11:17:36 -050043 LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
Kra1o50024e382014-12-17 01:49:00 +010044 else
45 LOCAL_C_INCLUDES += $(TARGET_CUSTOM_KERNEL_HEADERS)
46 endif
Dees Troy62b75ab2014-05-02 13:20:33 +000047 endif
48else
Ethan Yonker58f21322018-08-24 11:17:36 -050049 LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
Ethan Yonkera59da092015-10-13 19:35:05 -050050 # The header files required for adf graphics can cause compile errors
51 # with adf graphics.
52 LOCAL_SRC_FILES += graphics_adf.cpp
53 LOCAL_WHOLE_STATIC_LIBRARIES += libadf
Dees Troy62b75ab2014-05-02 13:20:33 +000054endif
55
Kra1o5de50c5f2015-04-23 21:46:36 +020056ifeq ($(TW_NEW_ION_HEAP), true)
57 LOCAL_CFLAGS += -DNEW_ION_HEAP
58endif
59
Ethan Yonker58f21322018-08-24 11:17:36 -050060LOCAL_STATIC_LIBRARIES += libpng libbase
Ethan Yonkerecbd3e82017-12-14 14:43:59 -060061ifneq ($(wildcard external/libdrm/Android.common.mk),)
62LOCAL_WHOLE_STATIC_LIBRARIES += libdrm_platform
63else
64LOCAL_WHOLE_STATIC_LIBRARIES += libdrm
65endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -050066ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
67 LOCAL_CFLAGS += -DHAS_LIBSYNC
68 LOCAL_WHOLE_STATIC_LIBRARIES += libsync_recovery
69endif
Tao Bao0ecbd762017-01-16 21:16:58 -080070
Ethan Yonker58f21322018-08-24 11:17:36 -050071LOCAL_CFLAGS += -Wall -Werror -std=c++14 -Wno-unused-private-field
Andreas Schneider75847da2017-11-02 17:53:47 +010072LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
Tao Bao0ecbd762017-01-16 21:16:58 -080073LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
Greg Hackmann41909dd2014-04-25 10:39:50 -070074
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075LOCAL_MODULE := libminui
76
Elliott Hughes07138192015-04-10 09:40:53 -070077LOCAL_CLANG := true
Elliott Hughes01a4d082015-03-24 15:21:48 -070078
Doug Zongker9c5efe62012-07-11 13:21:02 -070079# This used to compare against values in double-quotes (which are just
80# ordinary characters in this context). Strip double-quotes from the
81# value so that either will work.
82
Tony Kuofd778e32015-02-05 21:25:56 +080083ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),ABGR_8888)
84 LOCAL_CFLAGS += -DRECOVERY_ABGR
85endif
Kra1o577568592015-10-14 18:09:54 +020086ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBA_8888)
87 LOCAL_CFLAGS += -DRECOVERY_RGBA
88endif
Doug Zongker9c5efe62012-07-11 13:21:02 -070089ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBX_8888)
Michael Ward9d1bcdf2011-06-22 14:30:34 -070090 LOCAL_CFLAGS += -DRECOVERY_RGBX
91endif
Doug Zongker9c5efe62012-07-11 13:21:02 -070092ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),BGRA_8888)
Michael Ward9d1bcdf2011-06-22 14:30:34 -070093 LOCAL_CFLAGS += -DRECOVERY_BGRA
Doug Zongkerbe3e6f12011-01-13 16:43:44 -080094endif
95
Doug Zongkerc560a672012-12-18 16:31:27 -080096ifneq ($(TARGET_RECOVERY_OVERSCAN_PERCENT),)
97 LOCAL_CFLAGS += -DOVERSCAN_PERCENT=$(TARGET_RECOVERY_OVERSCAN_PERCENT)
98else
99 LOCAL_CFLAGS += -DOVERSCAN_PERCENT=0
100endif
101
Matt Mower4a5db2d2014-01-20 16:14:25 -0600102ifneq ($(TW_BRIGHTNESS_PATH),)
103 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=\"$(TW_BRIGHTNESS_PATH)\"
104endif
105ifneq ($(TW_MAX_BRIGHTNESS),)
106 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
107else
108 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=255
109endif
110ifneq ($(TW_NO_SCREEN_BLANK),)
111 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
Ethan Chen0940e412013-10-22 13:48:50 -0700112endif
maxwen39624d42015-12-01 22:02:07 +0100113ifneq ($(BOARD_USE_CUSTOM_RECOVERY_FONT),)
114 LOCAL_CFLAGS += -DBOARD_USE_CUSTOM_RECOVERY_FONT=$(BOARD_USE_CUSTOM_RECOVERY_FONT)
115endif
Ethan Yonker39662b22017-05-23 08:34:02 -0500116ifeq ($(wildcard system/core/healthd/animation.h),)
117 TARGET_GLOBAL_CFLAGS += -DTW_NO_MINUI_CUSTOM_FONTS
118 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_NO_MINUI_CUSTOM_FONTS
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500119endif
Luke Song846012f2017-09-13 15:56:16 -0700120ifneq ($(TARGET_RECOVERY_DEFAULT_ROTATION),)
121 LOCAL_CFLAGS += -DDEFAULT_ROTATION=$(TARGET_RECOVERY_DEFAULT_ROTATION)
122else
123 LOCAL_CFLAGS += -DDEFAULT_ROTATION=ROTATION_NONE
124endif
125
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800126include $(BUILD_STATIC_LIBRARY)
Dees Troy62b75ab2014-05-02 13:20:33 +0000127
Tao Bao99f0d9e2016-10-13 12:46:38 -0700128# libminui (shared library)
129# ===============================
Ajay Dudani9905f3a2015-02-04 16:49:44 -0800130# Used by OEMs for factory test images.
Dees Troy62b75ab2014-05-02 13:20:33 +0000131include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700132LOCAL_CLANG := true
Dees Troy62b75ab2014-05-02 13:20:33 +0000133LOCAL_MODULE := libminui
Ajay Dudani9905f3a2015-02-04 16:49:44 -0800134LOCAL_WHOLE_STATIC_LIBRARIES += libminui
Tianjie Xu0a599562017-03-28 20:11:15 +0000135LOCAL_SHARED_LIBRARIES := \
136 libpng \
137 libbase
138
Ethan Yonker58f21322018-08-24 11:17:36 -0500139LOCAL_CFLAGS := -Wall -Werror -std=c++14 -Wno-unused-private-field
Tao Bao0ecbd762017-01-16 21:16:58 -0800140LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
141LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
Dees Troy62b75ab2014-05-02 13:20:33 +0000142include $(BUILD_SHARED_LIBRARY)
Ethan Yonkera59da092015-10-13 19:35:05 -0500143
144include $(CLEAR_VARS)
145LOCAL_MODULE := minuitest
146LOCAL_MODULE_TAGS := optional
147LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN)
148LOCAL_SRC_FILES := main.cpp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500149LOCAL_SHARED_LIBRARIES := libbinder libminui libpng libz libutils libstdc++ libcutils liblog libm libc
Ethan Yonkera59da092015-10-13 19:35:05 -0500150LOCAL_C_INCLUDES := external/libcxx/include external/libpng
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500151ifneq ($(TARGET_ARCH), arm64)
152 ifneq ($(TARGET_ARCH), x86_64)
153 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
154 else
155 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
156 endif
157else
158 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
159endif
Ethan Yonkera59da092015-10-13 19:35:05 -0500160include $(BUILD_EXECUTABLE)