Chenjie Luo | 15f32be | 2014-09-25 11:28:03 -0700 | [diff] [blame] | 1 | # Copyright (C) 2008 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 | # and when built explicitly put it in the data partition |
| 22 | LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS) |
| 23 | |
Paul Duffin | b7a1329 | 2017-12-15 07:27:19 +0000 | [diff] [blame] | 24 | LOCAL_JAVA_LIBRARIES := \ |
Jiyong Park | 925a766 | 2018-01-24 15:10:49 +0900 | [diff] [blame] | 25 | android.test.runner.stubs \ |
Paul Duffin | b7a1329 | 2017-12-15 07:27:19 +0000 | [diff] [blame] | 26 | org.apache.http.legacy \ |
Kodlee Yin | 982751f | 2017-12-21 17:48:58 -0800 | [diff] [blame] | 27 | android.test.base.stubs |
Chenjie Luo | 15f32be | 2014-09-25 11:28:03 -0700 | [diff] [blame] | 28 | |
Wale Ogunwale | fc6cee5 | 2017-03-10 07:21:31 -0800 | [diff] [blame] | 29 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 30 | compatibility-device-util \ |
| 31 | ctstestrunner \ |
| 32 | ctstestserver \ |
| 33 | mockito-target-minus-junit4 \ |
| 34 | android-support-test \ |
Dianne Hackborn | a19a910 | 2017-12-14 15:37:39 -0800 | [diff] [blame] | 35 | platform-test-annotations \ |
Kodlee Yin | 982751f | 2017-12-21 17:48:58 -0800 | [diff] [blame] | 36 | cts-amwm-util \ |
| 37 | android-support-test |
Chenjie Luo | 15f32be | 2014-09-25 11:28:03 -0700 | [diff] [blame] | 38 | |
Wale Ogunwale | ac2aafe | 2017-02-09 15:31:24 -0800 | [diff] [blame] | 39 | LOCAL_SRC_FILES := \ |
Tadashi G. Takaoka | 50224e9 | 2017-10-30 17:20:50 +0900 | [diff] [blame] | 40 | $(call all-java-files-under, src) |
Chenjie Luo | 15f32be | 2014-09-25 11:28:03 -0700 | [diff] [blame] | 41 | |
Stuart Scott | 2ff78ae | 2016-02-18 19:25:52 -0800 | [diff] [blame] | 42 | # Tag this module as a cts test artifact |
nickrose | f1efbc6 | 2017-07-05 12:38:06 -0700 | [diff] [blame] | 43 | LOCAL_COMPATIBILITY_SUITE := cts vts general-tests |
Chenjie Luo | 15f32be | 2014-09-25 11:28:03 -0700 | [diff] [blame] | 44 | |
Stuart Scott | 9bdd69b | 2015-08-11 13:09:33 -0700 | [diff] [blame] | 45 | LOCAL_PACKAGE_NAME := CtsAppTestCases |
| 46 | |
| 47 | LOCAL_INSTRUMENTATION_FOR := CtsAppTestStubs |
| 48 | |
Keun-young Park | 7a5a5eb | 2016-03-01 15:22:48 -0800 | [diff] [blame] | 49 | LOCAL_SDK_VERSION := test_current |
Christopher Tate | a4c711e | 2018-07-20 16:37:23 -0700 | [diff] [blame] | 50 | LOCAL_MIN_SDK_VERSION := 11 |
Stuart Scott | 9bdd69b | 2015-08-11 13:09:33 -0700 | [diff] [blame] | 51 | |
| 52 | include $(BUILD_CTS_PACKAGE) |
| 53 | |
Keun-young Park | 7a5a5eb | 2016-03-01 15:22:48 -0800 | [diff] [blame] | 54 | include $(call all-makefiles-under,$(LOCAL_PATH)) |