Home | History | Annotate | Download | only in libgralloc
      1 # Copyright (C) 2008 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 # Gralloc module
     16 LOCAL_PATH := $(call my-dir)
     17 include $(LOCAL_PATH)/../common.mk
     18 include $(CLEAR_VARS)
     19 
     20 # b/24171136 many files not compiling with clang/llvm yet
     21 LOCAL_CLANG := false
     22 
     23 LOCAL_MODULE                  := gralloc.$(TARGET_BOARD_PLATFORM)
     24 LOCAL_MODULE_RELATIVE_PATH    := hw
     25 LOCAL_PROPRIETARY_MODULE      := true
     26 LOCAL_MODULE_TAGS             := optional
     27 LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes)
     28 LOCAL_SHARED_LIBRARIES        := $(common_libs) libmemalloc libqdMetaData
     29 LOCAL_SHARED_LIBRARIES        += libqdutils libGLESv1_CM
     30 LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdgralloc\"
     31 LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
     32 LOCAL_SRC_FILES               := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp
     33 LOCAL_COPY_HEADERS_TO         := $(common_header_export_path)
     34 LOCAL_COPY_HEADERS            := gralloc_priv.h gr.h
     35 
     36 LOCAL_STATIC_LIBRARIES        := libgralloc1-adapter
     37 LOCAL_SHARED_LIBRARIES        += libsync
     38 
     39 ifeq ($(TARGET_USES_GRALLOC1_ADAPTER), true)
     40 LOCAL_CFLAGS += -DADVERTISE_GRALLOC1
     41 endif
     42 
     43 include $(BUILD_SHARED_LIBRARY)
     44 
     45 # MemAlloc Library
     46 include $(CLEAR_VARS)
     47 
     48 # b/24171136 many files not compiling with clang/llvm yet
     49 LOCAL_CLANG := false
     50 
     51 LOCAL_MODULE                  := libmemalloc
     52 LOCAL_MODULE_TAGS             := optional
     53 LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes)
     54 LOCAL_SHARED_LIBRARIES        := $(common_libs) libqdutils libdl
     55 LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdmemalloc\"
     56 LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
     57 LOCAL_SRC_FILES               := ionalloc.cpp alloc_controller.cpp
     58 LOCAL_COPY_HEADERS            := alloc_controller.h memalloc.h
     59 
     60 include $(BUILD_SHARED_LIBRARY)
     61