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
15android_test_helper_app {
16    name: "CtsAccountCheckTestOnlyOwnerApp",
17    defaults: ["cts_defaults"],
18    // Tag this module as a cts test artifact
19    test_suites: [
20        "cts",
21        "vts10",
22        "general-tests",
23    ],
24    srcs: ["src-owner/**/*.java"],
25    resource_dirs: ["TestOnlyOwner/res"],
26    static_libs: [
27        "androidx.legacy_legacy-support-v4",
28        "ctstestrunner-axt",
29        "ub-uiautomator",
30        "androidx.test.rules",
31    ],
32    sdk_version: "current",
33    manifest: "TestOnlyOwner/AndroidManifest.xml",
34}
35
36android_test_helper_app {
37    name: "CtsAccountCheckNonTestOnlyOwnerApp",
38    defaults: ["cts_defaults"],
39    // Tag this module as a cts test artifact
40    test_suites: [
41        "cts",
42        "vts10",
43        "general-tests",
44    ],
45    srcs: ["src-owner/**/*.java"],
46    resource_dirs: ["NonTestOnlyOwner/res"],
47    static_libs: [
48        "androidx.legacy_legacy-support-v4",
49        "ctstestrunner-axt",
50        "ub-uiautomator",
51        "androidx.test.rules",
52    ],
53    sdk_version: "current",
54    manifest: "NonTestOnlyOwner/AndroidManifest.xml",
55}
56
57android_test_helper_app {
58    name: "CtsAccountCheckTestOnlyOwnerUpdateApp",
59    defaults: ["cts_defaults"],
60    // Tag this module as a cts test artifact
61    test_suites: [
62        "cts",
63        "vts10",
64        "general-tests",
65    ],
66    srcs: ["src-owner/**/*.java"],
67    resource_dirs: ["TestOnlyOwnerUpdate/res"],
68    static_libs: [
69        "androidx.legacy_legacy-support-v4",
70        "ctstestrunner-axt",
71        "ub-uiautomator",
72        "androidx.test.rules",
73    ],
74    sdk_version: "current",
75    manifest: "TestOnlyOwnerUpdate/AndroidManifest.xml",
76}
77