1// Copyright (C) 2019 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
15android_test_helper_app {
16    name: "CtsFullBackupApp",
17    defaults: ["cts_support_defaults"],
18    srcs: [
19        "src/**/*.java",
20    ],
21    static_libs: [
22        "compatibility-device-util-axt",
23        "ctstestrunner-axt",
24    ],
25    test_suites: [
26        "cts",
27        "vts10",
28        "general-tests",
29    ],
30    platform_apis: true,
31    manifest: "fullbackup/AndroidManifest.xml"
32}
33
34android_test_helper_app {
35    name: "CtsKeyValueBackupApp",
36    defaults: ["cts_support_defaults"],
37    // Tag this module as a cts test artifact
38    srcs: [
39        "src/**/*.java",
40    ],
41    static_libs: [
42        "compatibility-device-util-axt",
43        "ctstestrunner-axt",
44    ],
45    test_suites: [
46        "cts",
47        "vts10",
48        "general-tests",
49    ],
50    platform_apis: true,
51    manifest: "keyvalue/AndroidManifest.xml"
52}
53
54android_test_helper_app {
55    name: "CtsPermissionBackupApp",
56    defaults: ["cts_support_defaults"],
57    // Tag this module as a cts test artifact
58    srcs: [
59        "src/**/*.java",
60    ],
61    static_libs: [
62        "compatibility-device-util-axt",
63        "ctstestrunner-axt",
64    ],
65    test_suites: [
66        "cts",
67        "vts10",
68        "general-tests",
69    ],
70    platform_apis: true,
71    manifest: "permission/AndroidManifest.xml"
72}
73
74android_test_helper_app {
75    name: "CtsPermissionBackupApp22",
76    defaults: ["cts_support_defaults"],
77    // Tag this module as a cts test artifact
78    srcs: [
79        "src/**/*.java",
80    ],
81    static_libs: [
82        "compatibility-device-util-axt",
83        "ctstestrunner-axt",
84    ],
85    test_suites: [
86        "cts",
87        "vts10",
88        "general-tests",
89    ],
90    platform_apis: true,
91    manifest: "permission22/AndroidManifest.xml"
92}
93