Matthew Williams | 547b816 | 2014-10-15 10:18:11 -0700 | [diff] [blame] | 1 | # Copyright (C) 2014 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 | |
| 19 | # Don't include this package in any target. |
| 20 | LOCAL_MODULE_TAGS := optional |
| 21 | |
| 22 | # When built, explicitly put it in the data partition. |
| 23 | LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS) |
| 24 | |
Brett Chabot | 0146627 | 2019-03-06 15:52:42 -0800 | [diff] [blame] | 25 | LOCAL_STATIC_JAVA_LIBRARIES := compatibility-device-util-axt ub-uiautomator androidx.test.rules |
Matthew Williams | 547b816 | 2014-10-15 10:18:11 -0700 | [diff] [blame] | 26 | |
Jiyong Park | 925a766 | 2018-01-24 15:10:49 +0900 | [diff] [blame] | 27 | LOCAL_JAVA_LIBRARIES := android.test.base.stubs |
Paul Duffin | 27c3c8d | 2017-12-05 18:36:55 +0000 | [diff] [blame] | 28 | |
Matthew Williams | 547b816 | 2014-10-15 10:18:11 -0700 | [diff] [blame] | 29 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
Suprabh Shukla | 3c79dd0 | 2017-10-13 16:39:33 -0700 | [diff] [blame] | 30 | LOCAL_SRC_FILES += $(call all-java-files-under, JobTestApp/src) |
Matthew Williams | 547b816 | 2014-10-15 10:18:11 -0700 | [diff] [blame] | 31 | |
Stuart Scott | 2ff78ae | 2016-02-18 19:25:52 -0800 | [diff] [blame] | 32 | # Tag this module as a cts test artifact |
Kazuhiro Inaba | 42c76a4 | 2018-09-07 11:29:21 +0900 | [diff] [blame] | 33 | LOCAL_COMPATIBILITY_SUITE := cts vts general-tests |
Agatha Man | 38aeeec | 2015-09-10 17:12:00 -0700 | [diff] [blame] | 34 | |
Matthew Williams | 547b816 | 2014-10-15 10:18:11 -0700 | [diff] [blame] | 35 | # Must match the package name in CtsTestCaseList.mk |
Agatha Man | 38aeeec | 2015-09-10 17:12:00 -0700 | [diff] [blame] | 36 | LOCAL_PACKAGE_NAME := CtsJobSchedulerTestCases |
Matthew Williams | 547b816 | 2014-10-15 10:18:11 -0700 | [diff] [blame] | 37 | |
Suprabh Shukla | d9ab476 | 2017-11-14 21:02:39 -0800 | [diff] [blame] | 38 | #LOCAL_SDK_VERSION := current |
Anton Hansson | 6a116ec | 2018-02-22 14:33:32 +0000 | [diff] [blame] | 39 | LOCAL_PRIVATE_PLATFORM_APIS := true |
Matthew Williams | 547b816 | 2014-10-15 10:18:11 -0700 | [diff] [blame] | 40 | |
| 41 | include $(BUILD_CTS_PACKAGE) |
Aaron Holden | e4e2fdf | 2017-04-05 02:01:05 -0700 | [diff] [blame] | 42 | |
| 43 | include $(call all-makefiles-under,$(LOCAL_PATH)) |