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//apks signed by cts-keyset-test-a 16package { 17 default_team: "trendy_team_framework_android_packages", 18 default_applicable_licenses: ["Android-Apache-2.0"], 19} 20 21android_test_helper_app { 22 name: "CtsKeySetSigningAUpgradeA", 23 defaults: ["cts_support_defaults"], 24 sdk_version: "current", 25 static_libs: ["androidx.test.rules"], 26 certificate: ":cts-keyset-test-a", 27 dex_preopt: { 28 enabled: false, 29 }, 30 // tag this module as a cts test artifact 31 test_suites: [ 32 "cts", 33 "general-tests", 34 ], 35} 36 37//apks signed by cts-keyset-test-b 38android_test_helper_app { 39 name: "CtsKeySetSigningBUpgradeA", 40 defaults: ["cts_support_defaults"], 41 sdk_version: "current", 42 static_libs: ["androidx.test.rules"], 43 certificate: ":cts-keyset-test-b", 44 dex_preopt: { 45 enabled: false, 46 }, 47 // tag this module as a cts test artifact 48 test_suites: [ 49 "cts", 50 "general-tests", 51 ], 52} 53 54//apks signed by cts-keyset-test-ec-a 55android_test_helper_app { 56 name: "CtsKeySetSigningEcAUpgradeA", 57 defaults: ["cts_support_defaults"], 58 sdk_version: "current", 59 static_libs: ["androidx.test.rules"], 60 certificate: ":cts-keyset-test-ec-a", 61 dex_preopt: { 62 enabled: false, 63 }, 64 // tag this module as a cts test artifact 65 test_suites: [ 66 "cts", 67 "general-tests", 68 ], 69} 70 71//apks signed by cts-keyset-test-a and cts-keyset-test-b 72android_test_helper_app { 73 name: "CtsKeySetSigningAAndBUpgradeA", 74 defaults: ["cts_support_defaults"], 75 sdk_version: "current", 76 static_libs: ["androidx.test.rules"], 77 certificate: ":cts-keyset-test-a", 78 additional_certificates: [":cts-keyset-test-b"], 79 dex_preopt: { 80 enabled: false, 81 }, 82 // tag this module as a cts test artifact 83 test_suites: [ 84 "cts", 85 "general-tests", 86 ], 87} 88