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 cts-keyset-test-a
16package {
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20android_test_helper_app {
21    name: "CtsKeySetSigningAUpgradeB",
22    defaults: ["cts_support_defaults"],
23    sdk_version: "current",
24    static_libs: ["androidx.test.rules"],
25    certificate: ":cts-keyset-test-a",
26    dex_preopt: {
27        enabled: false,
28    },
29    // tag this module as a cts test artifact
30    test_suites: [
31        "cts",
32        "general-tests",
33    ],
34}
35
36//apks signed cts-keyset-test-b
37android_test_helper_app {
38    name: "CtsKeySetSigningBUpgradeB",
39    defaults: ["cts_support_defaults"],
40    sdk_version: "current",
41    static_libs: ["androidx.test.rules"],
42    certificate: ":cts-keyset-test-b",
43    dex_preopt: {
44        enabled: false,
45    },
46    // tag this module as a cts test artifact
47    test_suites: [
48        "cts",
49        "general-tests",
50    ],
51}
52
53//apks signed by cts-keyset-test-a and cts-keyset-test-c
54android_test_helper_app {
55    name: "CtsKeySetSigningAAndCUpgradeB",
56    defaults: ["cts_support_defaults"],
57    sdk_version: "current",
58    static_libs: ["androidx.test.rules"],
59    certificate: ":cts-keyset-test-a",
60    additional_certificates: [":cts-keyset-test-c"],
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