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_MODULE_TAGS             := optional
     26 LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes)
     27 LOCAL_SHARED_LIBRARIES        := $(common_libs) libmemalloc libqdMetaData
     28 LOCAL_SHARED_LIBRARIES        += libqdutils libGLESv1_CM
     29 LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdgralloc\"
     30 LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
     31 LOCAL_SRC_FILES               := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp
     32 LOCAL_COPY_HEADERS_TO         := $(common_header_export_path)
     33 LOCAL_COPY_HEADERS            := gralloc_priv.h gr.h
     34 
     35 include $(BUILD_SHARED_LIBRARY)
     36 
     37 # MemAlloc Library
     38 include $(CLEAR_VARS)
     39 
     40 # b/24171136 many files not compiling with clang/llvm yet
     41 LOCAL_CLANG := false
     42 
     43 LOCAL_MODULE                  := libmemalloc
     44 LOCAL_MODULE_TAGS             := optional
     45 LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes)
     46 LOCAL_SHARED_LIBRARIES        := $(common_libs) libqdutils libdl
     47 LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdmemalloc\"
     48 LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
     49 LOCAL_SRC_FILES               := ionalloc.cpp alloc_controller.cpp
     50 LOCAL_COPY_HEADERS            := alloc_controller.h memalloc.h
     51 
     52 include $(BUILD_SHARED_LIBRARY)
     53