blob: 622c06ee58222e3ef27f9613087423220409fba8 [file] [log] [blame]
Matthew Williams547b8162014-10-15 10:18:11 -07001# 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
15LOCAL_PATH:= $(call my-dir)
16
17include $(CLEAR_VARS)
18
19# Don't include this package in any target.
20LOCAL_MODULE_TAGS := optional
21
22# When built, explicitly put it in the data partition.
23LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
24
Suprabh Shukla3c79dd02017-10-13 16:39:33 -070025LOCAL_STATIC_JAVA_LIBRARIES := compatibility-device-util ub-uiautomator android-support-test
Matthew Williams547b8162014-10-15 10:18:11 -070026
Jiyong Park925a7662018-01-24 15:10:49 +090027LOCAL_JAVA_LIBRARIES := android.test.base.stubs
Paul Duffin27c3c8d2017-12-05 18:36:55 +000028
Matthew Williams547b8162014-10-15 10:18:11 -070029LOCAL_SRC_FILES := $(call all-java-files-under, src)
Suprabh Shukla3c79dd02017-10-13 16:39:33 -070030LOCAL_SRC_FILES += $(call all-java-files-under, JobTestApp/src)
Matthew Williams547b8162014-10-15 10:18:11 -070031
Stuart Scott2ff78ae2016-02-18 19:25:52 -080032# Tag this module as a cts test artifact
Kazuhiro Inaba42c76a42018-09-07 11:29:21 +090033LOCAL_COMPATIBILITY_SUITE := cts vts general-tests
Agatha Man38aeeec2015-09-10 17:12:00 -070034
Matthew Williams547b8162014-10-15 10:18:11 -070035# Must match the package name in CtsTestCaseList.mk
Agatha Man38aeeec2015-09-10 17:12:00 -070036LOCAL_PACKAGE_NAME := CtsJobSchedulerTestCases
Matthew Williams547b8162014-10-15 10:18:11 -070037
Suprabh Shuklad9ab4762017-11-14 21:02:39 -080038#LOCAL_SDK_VERSION := current
Anton Hansson6a116ec2018-02-22 14:33:32 +000039LOCAL_PRIVATE_PLATFORM_APIS := true
Matthew Williams547b8162014-10-15 10:18:11 -070040
41include $(BUILD_CTS_PACKAGE)
Aaron Holdene4e2fdf2017-04-05 02:01:05 -070042
43include $(call all-makefiles-under,$(LOCAL_PATH))