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 15LOCAL_PATH:= $(call my-dir) 16 17src_files := \ 18 memtrack.cpp 19 20include $(CLEAR_VARS) 21LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk 22 23LOCAL_SRC_FILES := $(src_files) 24 25LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) 26LOCAL_MODULE := memtrack_share 27 28LOCAL_C_INCLUDES += $(includes) 29LOCAL_SHARED_LIBRARIES := \ 30 liblog \ 31 32include $(BUILD_EXECUTABLE) 33 34include $(CLEAR_VARS) 35LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk 36 37LOCAL_SRC_FILES := $(src_files) 38LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) 39LOCAL_MODULE := memtrack 40 41LOCAL_FORCE_STATIC_EXECUTABLE := true 42LOCAL_STATIC_LIBRARIES := \ 43 libc \ 44 liblog \ 45 libc++abi \ 46 libdl \ 47 48LOCAL_CXX_STL := libc++_static 49 50# Bug: 18389563 - Today, libc++_static and libgcc have duplicate sybols for 51# __aeabi_uidiv(). Allowing multiple definitions lets the build proceed, but 52# updating compiler-rt to be a superset of libgcc will allow this WAR to be 53# removed. 54LOCAL_LDFLAGS := -Wl,-z,muldefs 55 56include $(BUILD_EXECUTABLE) 57