Home | History | Annotate | Download | only in minui
      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 
     15 LOCAL_PATH := $(call my-dir)
     16 include $(CLEAR_VARS)
     17 
     18 LOCAL_SRC_FILES := \
     19     events.cpp \
     20     graphics.cpp \
     21     graphics_adf.cpp \
     22     graphics_drm.cpp \
     23     graphics_fbdev.cpp \
     24     resources.cpp \
     25 
     26 LOCAL_WHOLE_STATIC_LIBRARIES := \
     27     libadf \
     28     libdrm \
     29     libsync_recovery
     30 
     31 LOCAL_STATIC_LIBRARIES := \
     32     libpng \
     33     libbase
     34 
     35 LOCAL_CFLAGS := -Werror
     36 LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
     37 LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
     38 
     39 LOCAL_MODULE := libminui
     40 
     41 # This used to compare against values in double-quotes (which are just
     42 # ordinary characters in this context).  Strip double-quotes from the
     43 # value so that either will work.
     44 
     45 ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),ABGR_8888)
     46   LOCAL_CFLAGS += -DRECOVERY_ABGR
     47 endif
     48 ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBX_8888)
     49   LOCAL_CFLAGS += -DRECOVERY_RGBX
     50 endif
     51 ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),BGRA_8888)
     52   LOCAL_CFLAGS += -DRECOVERY_BGRA
     53 endif
     54 
     55 ifneq ($(TARGET_RECOVERY_OVERSCAN_PERCENT),)
     56   LOCAL_CFLAGS += -DOVERSCAN_PERCENT=$(TARGET_RECOVERY_OVERSCAN_PERCENT)
     57 else
     58   LOCAL_CFLAGS += -DOVERSCAN_PERCENT=0
     59 endif
     60 
     61 include $(BUILD_STATIC_LIBRARY)
     62 
     63 # Used by OEMs for factory test images.
     64 include $(CLEAR_VARS)
     65 LOCAL_MODULE := libminui
     66 LOCAL_WHOLE_STATIC_LIBRARIES += libminui
     67 LOCAL_SHARED_LIBRARIES := \
     68     libpng \
     69     libbase
     70 
     71 LOCAL_CFLAGS := -Werror
     72 LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
     73 LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
     74 include $(BUILD_SHARED_LIBRARY)
     75