41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2016 The Android Open Source Project
|
|
#
|
|
# This software is licensed under the terms of the GNU General Public
|
|
# License version 2, as published by the Free Software Foundation, and
|
|
# may be copied, distributed, and modified under those terms.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
local_ltp_root := $(LOCAL_PATH)/..
|
|
|
|
ltp_build_prebuilt := $(LOCAL_PATH)/Android.prebuilt.mk
|
|
|
|
include $(LOCAL_PATH)/Android.ltp.mk
|
|
|
|
local_ltp_root :=
|
|
ltp_build_prebuilt :=
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := ltp
|
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-GPL-2.0
|
|
LOCAL_LICENSE_CONDITIONS := notice restricted
|
|
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../COPYING $(LOCAL_PATH)/../NOTICE
|
|
LOCAL_MODULE_STEM := disabled_tests.txt
|
|
LOCAL_PREBUILT_MODULE_FILE := $(LOCAL_PATH)/tools/disabled_tests.txt
|
|
LOCAL_MODULE_RELATIVE_PATH := ltp
|
|
LOCAL_MODULE_CLASS := NATIVE_TESTS
|
|
LOCAL_MULTILIB := both
|
|
LOCAL_TEST_DATA := $(call find-test-data-in-subdirs,external/ltp,"*",runtest)
|
|
|
|
include $(LOCAL_PATH)/ltp_package_list.mk
|
|
LOCAL_REQUIRED_MODULES := $(ltp_packages)
|
|
ltp_packages :=
|
|
|
|
include $(BUILD_PREBUILT)
|