Home | History | Annotate | Download | only in android
      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 
     14 LOCAL_PATH := $(call my-dir)
     15 local_ltp_root := $(LOCAL_PATH)/..
     16 
     17 ltp_build_prebuilt := $(LOCAL_PATH)/Android.prebuilt.mk
     18 
     19 include $(LOCAL_PATH)/Android.ltp.mk
     20 
     21 local_ltp_root :=
     22 ltp_build_prebuilt :=
     23 
     24 include $(CLEAR_VARS)
     25 LOCAL_MODULE := ltp
     26 LOCAL_MODULE_STEM := disabled_tests.txt
     27 LOCAL_PREBUILT_MODULE_FILE := $(LOCAL_PATH)/tools/disabled_tests.txt
     28 LOCAL_MODULE_RELATIVE_PATH := ltp
     29 LOCAL_MODULE_CLASS := NATIVE_TESTS
     30 LOCAL_MULTILIB := both
     31 LOCAL_TEST_DATA := $(call find-test-data-in-subdirs,external/ltp,"*",runtest)
     32 
     33 include $(LOCAL_PATH)/ltp_package_list.mk
     34 LOCAL_REQUIRED_MODULES := $(ltp_packages)
     35 ltp_packages :=
     36 
     37 include $(BUILD_PREBUILT)
     38