1 # Copyright (C) 2010 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_CLANG := true 19 LOCAL_CPPFLAGS := -std=c++1y -Weverything -Werror 20 21 # The static constructors and destructors in this library have not been noted to 22 # introduce significant overheads 23 LOCAL_CPPFLAGS += -Wno-exit-time-destructors 24 LOCAL_CPPFLAGS += -Wno-global-constructors 25 26 # We only care about compiling as C++14 27 LOCAL_CPPFLAGS += -Wno-c++98-compat-pedantic 28 29 # We use four-character constants for the GraphicBuffer header, and don't care 30 # that they're non-portable as long as they're consistent within one execution 31 LOCAL_CPPFLAGS += -Wno-four-char-constants 32 33 # Don't warn about struct padding 34 LOCAL_CPPFLAGS += -Wno-padded 35 36 LOCAL_SRC_FILES := \ 37 Fence.cpp \ 38 FramebufferNativeWindow.cpp \ 39 FrameStats.cpp \ 40 GraphicBuffer.cpp \ 41 GraphicBufferAllocator.cpp \ 42 GraphicBufferMapper.cpp \ 43 PixelFormat.cpp \ 44 Rect.cpp \ 45 Region.cpp \ 46 UiConfig.cpp 47 48 LOCAL_SHARED_LIBRARIES := \ 49 libcutils \ 50 libhardware \ 51 libsync \ 52 libutils \ 53 liblog 54 55 ifneq ($(BOARD_FRAMEBUFFER_FORCE_FORMAT),) 56 LOCAL_CFLAGS += -DFRAMEBUFFER_FORCE_FORMAT=$(BOARD_FRAMEBUFFER_FORCE_FORMAT) 57 endif 58 59 LOCAL_MODULE := libui 60 61 include $(BUILD_SHARED_LIBRARY) 62 63 64 # Include subdirectory makefiles 65 # ============================================================ 66 67 # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework 68 # team really wants is to build the stuff defined by this makefile. 69 ifeq (,$(ONE_SHOT_MAKEFILE)) 70 include $(call first-makefiles-under,$(LOCAL_PATH)) 71 endif 72