Home | History | Annotate | Download | only in memtrack
      1 # Copyright (C) 2013 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 
     17 src_files := \
     18 	memtrack.cpp
     19 
     20 includes := \
     21     bionic \
     22     external/stlport/stlport \
     23 
     24 include $(CLEAR_VARS)
     25 
     26 LOCAL_SRC_FILES := $(src_files)
     27 
     28 LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
     29 LOCAL_MODULE_TAGS := debug
     30 LOCAL_MODULE := memtrack_share
     31 
     32 LOCAL_C_INCLUDES += $(includes)
     33 LOCAL_SHARED_LIBRARIES := \
     34 	libc \
     35 	libstlport \
     36 	liblog \
     37 
     38 include $(BUILD_EXECUTABLE)
     39 
     40 include $(CLEAR_VARS)
     41 
     42 LOCAL_SRC_FILES := $(src_files)
     43 LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
     44 LOCAL_MODULE_TAGS := debug
     45 LOCAL_MODULE := memtrack
     46 
     47 LOCAL_FORCE_STATIC_EXECUTABLE := true
     48 LOCAL_C_INCLUDES += $(includes)
     49 LOCAL_STATIC_LIBRARIES := \
     50 	libc \
     51 	libstdc++ \
     52 	libstlport_static \
     53 	liblog \
     54 
     55 include $(BUILD_EXECUTABLE)
     56