blob: ae1552b1b995ccf83f9429d13614cba2af0b0e69 [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 \
24 graphics_adf.cpp \
Stéphane Marchesin1a92c442015-06-29 20:05:48 -070025 graphics_drm.cpp \
Elliott Hughes07cfb8f2015-04-10 13:12:05 -070026 graphics_fbdev.cpp \
27 resources.cpp \
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080028
Tao Bao0ecbd762017-01-16 21:16:58 -080029LOCAL_WHOLE_STATIC_LIBRARIES := \
30 libadf \
Dan Willemsen2ee92662017-10-19 22:29:50 -070031 libdrm \
Tao Bao0ecbd762017-01-16 21:16:58 -080032 libsync_recovery
33
Tianjie Xu2078b222017-03-22 12:27:26 -070034LOCAL_STATIC_LIBRARIES := \
35 libpng \
36 libbase
37
Tianjie Xuc89d1e72017-08-28 14:15:07 -070038LOCAL_CFLAGS := -Wall -Werror
Tao Bao0ecbd762017-01-16 21:16:58 -080039LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
40LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
Greg Hackmann41909dd2014-04-25 10:39:50 -070041
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080042LOCAL_MODULE := libminui
43
Doug Zongker9c5efe62012-07-11 13:21:02 -070044# This used to compare against values in double-quotes (which are just
45# ordinary characters in this context). Strip double-quotes from the
46# value so that either will work.
47
Tony Kuofd778e32015-02-05 21:25:56 +080048ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),ABGR_8888)
49 LOCAL_CFLAGS += -DRECOVERY_ABGR
50endif
Doug Zongker9c5efe62012-07-11 13:21:02 -070051ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBX_8888)
Michael Ward9d1bcdf2011-06-22 14:30:34 -070052 LOCAL_CFLAGS += -DRECOVERY_RGBX
53endif
Doug Zongker9c5efe62012-07-11 13:21:02 -070054ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),BGRA_8888)
Michael Ward9d1bcdf2011-06-22 14:30:34 -070055 LOCAL_CFLAGS += -DRECOVERY_BGRA
Doug Zongkerbe3e6f12011-01-13 16:43:44 -080056endif
57
Doug Zongkerc560a672012-12-18 16:31:27 -080058ifneq ($(TARGET_RECOVERY_OVERSCAN_PERCENT),)
59 LOCAL_CFLAGS += -DOVERSCAN_PERCENT=$(TARGET_RECOVERY_OVERSCAN_PERCENT)
60else
61 LOCAL_CFLAGS += -DOVERSCAN_PERCENT=0
62endif
63
Luke Song846012f2017-09-13 15:56:16 -070064ifneq ($(TARGET_RECOVERY_DEFAULT_ROTATION),)
65 LOCAL_CFLAGS += -DDEFAULT_ROTATION=$(TARGET_RECOVERY_DEFAULT_ROTATION)
66else
67 LOCAL_CFLAGS += -DDEFAULT_ROTATION=ROTATION_NONE
68endif
69
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080070include $(BUILD_STATIC_LIBRARY)
Ajay Dudani9905f3a2015-02-04 16:49:44 -080071
Tao Bao99f0d9e2016-10-13 12:46:38 -070072# libminui (shared library)
73# ===============================
Ajay Dudani9905f3a2015-02-04 16:49:44 -080074# Used by OEMs for factory test images.
75include $(CLEAR_VARS)
76LOCAL_MODULE := libminui
77LOCAL_WHOLE_STATIC_LIBRARIES += libminui
Tianjie Xu2078b222017-03-22 12:27:26 -070078LOCAL_SHARED_LIBRARIES := \
79 libpng \
80 libbase
81
Tianjie Xuc89d1e72017-08-28 14:15:07 -070082LOCAL_CFLAGS := -Wall -Werror
Tao Bao0ecbd762017-01-16 21:16:58 -080083LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
84LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
Ajay Dudani9905f3a2015-02-04 16:49:44 -080085include $(BUILD_SHARED_LIBRARY)