1 // Copyright (C) 2016 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 android_test_helper_app { 16 name: "CtsDeviceAndProfileOwnerApp23", 17 defaults: ["cts_defaults"], 18 platform_apis: true, 19 srcs: ["src/**/*.java"], 20 libs: [ 21 "android.test.runner.stubs", 22 "android.test.base.stubs", 23 ], 24 static_libs: [ 25 "compatibility-device-util-axt", 26 "ctstestrunner-axt", 27 "ub-uiautomator", 28 "cts-security-test-support-library", 29 "androidx.legacy_legacy-support-v4", 30 ], 31 resource_dirs: ["res"], 32 asset_dirs: ["assets"], 33 min_sdk_version: "23", 34 // tag this module as a cts test artifact 35 test_suites: [ 36 "cts", 37 "vts", 38 "general-tests", 39 ], 40 manifest: "api23/AndroidManifest.xml", 41 } 42 43 android_test_helper_app { 44 name: "CtsDeviceAndProfileOwnerApp25", 45 defaults: ["cts_defaults"], 46 platform_apis: true, 47 srcs: ["src/**/*.java"], 48 libs: [ 49 "android.test.runner.stubs", 50 "android.test.base.stubs", 51 ], 52 static_libs: [ 53 "compatibility-device-util-axt", 54 "ctstestrunner-axt", 55 "ub-uiautomator", 56 "cts-security-test-support-library", 57 "androidx.legacy_legacy-support-v4", 58 ], 59 resource_dirs: ["res"], 60 asset_dirs: ["assets"], 61 min_sdk_version: "23", 62 // tag this module as a cts test artifact 63 test_suites: [ 64 "cts", 65 "vts", 66 "general-tests", 67 ], 68 manifest: "api25/AndroidManifest.xml", 69 } 70 71 android_test_helper_app { 72 name: "CtsDeviceAndProfileOwnerApp", 73 defaults: ["cts_defaults"], 74 platform_apis: true, 75 srcs: ["src/**/*.java"], 76 libs: [ 77 "android.test.runner.stubs", 78 "android.test.base.stubs", 79 ], 80 static_libs: [ 81 "compatibility-device-util-axt", 82 "ctstestrunner-axt", 83 "ub-uiautomator", 84 "cts-security-test-support-library", 85 "androidx.legacy_legacy-support-v4", 86 ], 87 resource_dirs: ["res"], 88 asset_dirs: ["assets"], 89 min_sdk_version: "23", 90 // tag this module as a cts test artifact 91 test_suites: [ 92 "arcts", 93 "cts", 94 "vts", 95 "general-tests", 96 ], 97 manifest: "latest/AndroidManifest.xml", 98 } 99