Eric Laurent | d5da9de | 2010-06-27 18:46:25 -0700 | [diff] [blame] | 1 | ifeq ($(TARGET_ARCH),arm) |
2 | |||||
3 | LOCAL_PATH:= $(call my-dir) | ||||
4 | |||||
5 | include $(CLEAR_VARS) | ||||
6 | |||||
7 | LOCAL_MODULE:= shared_mem_test | ||||
8 | LOCAL_SRC_FILES := \ | ||||
9 | shared_mem_test.cpp | ||||
10 | LOCAL_SHARED_LIBRARIES := \ | ||||
11 | libc \ | ||||
12 | libcutils \ | ||||
13 | libutils \ | ||||
14 | libbinder \ | ||||
15 | libhardware_legacy \ | ||||
16 | libmedia | ||||
17 | LOCAL_MODULE_TAGS := tests | ||||
18 | |||||
19 | include $(BUILD_EXECUTABLE) | ||||
20 | |||||
21 | endif |