blob: e278a77edfda6971870c1a03d08ae92631e688ed [file] [log] [blame]
Stuart Scottb9a5c842015-04-23 14:41:29 -07001# 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
15LOCAL_PATH := $(call my-dir)
16
17include $(CLEAR_VARS)
18
Stuart Scottf2d1fb42015-10-07 10:31:09 -070019LOCAL_SRC_FILES := $(call all-java-files-under, ../../common/host-side/tradefed/src)
Stuart Scottb9a5c842015-04-23 14:41:29 -070020
21LOCAL_JAVA_RESOURCE_DIRS := res
Stuart Scottff15fe92015-08-28 15:34:10 -070022LOCAL_JAVA_RESOURCE_DIRS += ../../common/host-side/tradefed/res
Stuart Scottb9a5c842015-04-23 14:41:29 -070023
Dan Willemseneea8fe22016-02-22 23:30:52 -080024LOCAL_SUITE_BUILD_NUMBER := $(BUILD_NUMBER_FROM_FILE)
Stuart Scottfabc3152016-02-26 11:41:59 -080025LOCAL_SUITE_TARGET_ARCH := $(TARGET_ARCH)
Stuart Scott2ff78ae2016-02-18 19:25:52 -080026LOCAL_SUITE_NAME := CTS
Stuart Scottff15fe92015-08-28 15:34:10 -070027LOCAL_SUITE_FULLNAME := "Compatibility Test Suite"
svpawarf8ed9472017-09-14 15:27:07 -070028LOCAL_SUITE_VERSION := 8.0_r2
Stuart Scottb9a5c842015-04-23 14:41:29 -070029
Stuart Scott2ff78ae2016-02-18 19:25:52 -080030LOCAL_MODULE := cts-tradefed
Simran Basi42ed0952017-06-27 16:51:20 -070031LOCAL_COMPATIBILITY_SUITE := general-tests
jdesprez46b92232017-05-01 11:23:30 -070032include cts/error_prone_rules.mk
Stuart Scottff15fe92015-08-28 15:34:10 -070033include $(BUILD_COMPATIBILITY_SUITE)
Stuart Scottb9a5c842015-04-23 14:41:29 -070034
35# Build all sub-directories
36include $(call all-makefiles-under,$(LOCAL_PATH))