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