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