summaryrefslogtreecommitdiffstats
path: root/tiler/Android.mk
blob: 60c8699a4a810034eb90ea6c0f007554c473d84e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# only include if running on an omap4 platform
ifeq ($(TARGET_BOARD_PLATFORM),omap4)

LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)
LOCAL_SRC_FILES := memmgr.c tilermgr.c
LOCAL_MODULE := libtimemmgr
LOCAL_MODULE_TAGS := optional tests
include $(BUILD_SHARED_LIBRARY)

include $(CLEAR_VARS)
LOCAL_SRC_FILES := memmgr_test.c testlib.c
LOCAL_SHARED_LIBRARIES := libtimemmgr
LOCAL_MODULE := memmgr_test
LOCAL_MODULE_TAGS := tests
include $(BUILD_HEAPTRACKED_EXECUTABLE)

include $(CLEAR_VARS)
LOCAL_SRC_FILES := utils_test.c testlib.c
LOCAL_SHARED_LIBRARIES := libtimemmgr
LOCAL_MODULE := utils_test
LOCAL_MODULE_TAGS := tests
include $(BUILD_HEAPTRCKED_EXECUTABLE)

include $(CLEAR_VARS)
LOCAL_SRC_FILES := tiler_ptest.c
LOCAL_SHARED_LIBRARIES := libtimemmgr
LOCAL_MODULE    := tiler_ptest
LOCAL_MODULE_TAGS:= tests
include $(BUILD_HEAPTRACKED_EXECUTABLE)

endif