blob: 97abf71b0fb7e5046ef86a1d84b626733ac59429 [file] [log] [blame]
Sasha Smundak2d1c35e2019-03-10 18:57:41 -07001// 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
Sasha Smundakf72cf552019-03-27 15:58:27 -070015android_test_helper_app {
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070016 name: "CtsAccountCheckTestOnlyOwnerApp",
17 defaults: ["cts_defaults"],
18 // Tag this module as a cts test artifact
19 test_suites: [
20 "cts",
21 "vts",
Dan Shiefdc7e12020-03-19 12:07:49 -070022 "vts10",
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070023 "general-tests",
24 ],
25 srcs: ["src-owner/**/*.java"],
26 resource_dirs: ["TestOnlyOwner/res"],
27 static_libs: [
28 "androidx.legacy_legacy-support-v4",
29 "ctstestrunner-axt",
30 "ub-uiautomator",
31 "androidx.test.rules",
32 ],
33 sdk_version: "current",
34 manifest: "TestOnlyOwner/AndroidManifest.xml",
35}
36
Sasha Smundakf72cf552019-03-27 15:58:27 -070037android_test_helper_app {
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070038 name: "CtsAccountCheckNonTestOnlyOwnerApp",
39 defaults: ["cts_defaults"],
40 // Tag this module as a cts test artifact
41 test_suites: [
42 "cts",
43 "vts",
Dan Shiefdc7e12020-03-19 12:07:49 -070044 "vts10",
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070045 "general-tests",
46 ],
47 srcs: ["src-owner/**/*.java"],
48 resource_dirs: ["NonTestOnlyOwner/res"],
49 static_libs: [
50 "androidx.legacy_legacy-support-v4",
51 "ctstestrunner-axt",
52 "ub-uiautomator",
53 "androidx.test.rules",
54 ],
55 sdk_version: "current",
56 manifest: "NonTestOnlyOwner/AndroidManifest.xml",
57}
58
Sasha Smundakf72cf552019-03-27 15:58:27 -070059android_test_helper_app {
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070060 name: "CtsAccountCheckTestOnlyOwnerUpdateApp",
61 defaults: ["cts_defaults"],
62 // Tag this module as a cts test artifact
63 test_suites: [
64 "cts",
65 "vts",
Dan Shiefdc7e12020-03-19 12:07:49 -070066 "vts10",
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070067 "general-tests",
68 ],
69 srcs: ["src-owner/**/*.java"],
70 resource_dirs: ["TestOnlyOwnerUpdate/res"],
71 static_libs: [
72 "androidx.legacy_legacy-support-v4",
73 "ctstestrunner-axt",
74 "ub-uiautomator",
75 "androidx.test.rules",
76 ],
77 sdk_version: "current",
78 manifest: "TestOnlyOwnerUpdate/AndroidManifest.xml",
79}