Stuart Scott | b9a5c84 | 2015-04-23 14:41:29 -0700 | [diff] [blame] | 1 | # Copyright (C) 2015 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
| 17 | include $(CLEAR_VARS) |
| 18 | |
Stuart Scott | f2d1fb4 | 2015-10-07 10:31:09 -0700 | [diff] [blame] | 19 | LOCAL_SRC_FILES := $(call all-java-files-under, ../../common/host-side/tradefed/src) |
Stuart Scott | b9a5c84 | 2015-04-23 14:41:29 -0700 | [diff] [blame] | 20 | |
| 21 | LOCAL_JAVA_RESOURCE_DIRS := res |
Stuart Scott | ff15fe9 | 2015-08-28 15:34:10 -0700 | [diff] [blame] | 22 | LOCAL_JAVA_RESOURCE_DIRS += ../../common/host-side/tradefed/res |
Stuart Scott | b9a5c84 | 2015-04-23 14:41:29 -0700 | [diff] [blame] | 23 | |
Dan Willemsen | eea8fe2 | 2016-02-22 23:30:52 -0800 | [diff] [blame] | 24 | LOCAL_SUITE_BUILD_NUMBER := $(BUILD_NUMBER_FROM_FILE) |
Stuart Scott | fabc315 | 2016-02-26 11:41:59 -0800 | [diff] [blame] | 25 | LOCAL_SUITE_TARGET_ARCH := $(TARGET_ARCH) |
Stuart Scott | 2ff78ae | 2016-02-18 19:25:52 -0800 | [diff] [blame] | 26 | LOCAL_SUITE_NAME := CTS |
Stuart Scott | ff15fe9 | 2015-08-28 15:34:10 -0700 | [diff] [blame] | 27 | LOCAL_SUITE_FULLNAME := "Compatibility Test Suite" |
svpawar | f8ed947 | 2017-09-14 15:27:07 -0700 | [diff] [blame^] | 28 | LOCAL_SUITE_VERSION := 8.0_r2 |
Stuart Scott | b9a5c84 | 2015-04-23 14:41:29 -0700 | [diff] [blame] | 29 | |
Stuart Scott | 2ff78ae | 2016-02-18 19:25:52 -0800 | [diff] [blame] | 30 | LOCAL_MODULE := cts-tradefed |
Simran Basi | 42ed095 | 2017-06-27 16:51:20 -0700 | [diff] [blame] | 31 | LOCAL_COMPATIBILITY_SUITE := general-tests |
jdesprez | 46b9223 | 2017-05-01 11:23:30 -0700 | [diff] [blame] | 32 | include cts/error_prone_rules.mk |
Stuart Scott | ff15fe9 | 2015-08-28 15:34:10 -0700 | [diff] [blame] | 33 | include $(BUILD_COMPATIBILITY_SUITE) |
Stuart Scott | b9a5c84 | 2015-04-23 14:41:29 -0700 | [diff] [blame] | 34 | |
| 35 | # Build all sub-directories |
| 36 | include $(call all-makefiles-under,$(LOCAL_PATH)) |