1# 2# Copyright (C) 2016 The Android Open Source Project 3# 4# This software is licensed under the terms of the GNU General Public 5# License version 2, as published by the Free Software Foundation, and 6# may be copied, distributed, and modified under those terms. 7# 8# This program is distributed in the hope that it will be useful, 9# but WITHOUT ANY WARRANTY; without even the implied warranty of 10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11# GNU General Public License for more details. 12# 13 14LOCAL_PATH := $(call my-dir) 15local_ltp_root := $(LOCAL_PATH)/.. 16 17ltp_build_prebuilt := $(LOCAL_PATH)/Android.prebuilt.mk 18 19include $(LOCAL_PATH)/Android.ltp.mk 20 21local_ltp_root := 22ltp_build_prebuilt := 23 24include $(CLEAR_VARS) 25LOCAL_MODULE := ltp 26LOCAL_MODULE_STEM := disabled_tests.txt 27LOCAL_PREBUILT_MODULE_FILE := $(LOCAL_PATH)/tools/disabled_tests.txt 28LOCAL_MODULE_RELATIVE_PATH := ltp 29LOCAL_MODULE_CLASS := NATIVE_TESTS 30LOCAL_MULTILIB := both 31LOCAL_TEST_DATA := $(call find-test-data-in-subdirs,external/ltp,"*",runtest) 32 33include $(LOCAL_PATH)/ltp_package_list.mk 34LOCAL_REQUIRED_MODULES := $(ltp_packages) 35ltp_packages := 36 37include $(BUILD_PREBUILT) 38