Skylar Chang | 2ace013 | 2014-08-21 15:26:28 -0700 | [diff] [blame] | 1 | ifneq (,$(filter $(QCOM_BOARD_PLATFORMS),$(TARGET_BOARD_PLATFORM))) |
| 2 | ifneq (, $(filter aarch64 arm arm64, $(TARGET_ARCH))) |
| 3 | |
| 4 | LOCAL_PATH := $(call my-dir) |
| 5 | |
| 6 | include $(CLEAR_VARS) |
| 7 | |
| 8 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/ |
| 9 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../ipanat/inc |
| 10 | |
| 11 | LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include |
| 12 | LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 13 | |
| 14 | LOCAL_MODULE := ipa_nat_test |
| 15 | LOCAL_SRC_FILES := ipa_nat_test000.c \ |
| 16 | ipa_nat_test001.c \ |
| 17 | ipa_nat_test002.c \ |
| 18 | ipa_nat_test003.c \ |
| 19 | ipa_nat_test004.c \ |
| 20 | ipa_nat_test005.c \ |
| 21 | ipa_nat_test006.c \ |
| 22 | ipa_nat_test007.c \ |
| 23 | ipa_nat_test008.c \ |
| 24 | ipa_nat_test009.c \ |
| 25 | ipa_nat_test010.c \ |
| 26 | ipa_nat_test011.c \ |
| 27 | ipa_nat_test012.c \ |
| 28 | ipa_nat_test013.c \ |
| 29 | ipa_nat_test014.c \ |
| 30 | ipa_nat_test015.c \ |
| 31 | ipa_nat_test016.c \ |
| 32 | ipa_nat_test017.c \ |
| 33 | ipa_nat_test018.c \ |
| 34 | ipa_nat_test019.c \ |
| 35 | ipa_nat_test020.c \ |
| 36 | ipa_nat_test021.c \ |
| 37 | ipa_nat_test022.c \ |
| 38 | main.c |
| 39 | |
| 40 | |
| 41 | LOCAL_SHARED_LIBRARIES := libipanat |
| 42 | |
| 43 | LOCAL_MODULE_TAGS := debug |
| 44 | LOCAL_MODULE_PATH := $(TARGET_OUT_DATA)/kernel-tests/ip_accelerator |
| 45 | |
| 46 | include $(BUILD_EXECUTABLE) |
| 47 | |
| 48 | endif # $(TARGET_ARCH) |
| 49 | endif |