blob: 45d374f67490a5b940cc1da98be4ca59a95cc391 [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",
Dan Shiefdc7e12020-03-19 12:07:49 -070021 "vts10",
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070022 "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
Sasha Smundakf72cf552019-03-27 15:58:27 -070036android_test_helper_app {
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070037 name: "CtsAccountCheckNonTestOnlyOwnerApp",
38 defaults: ["cts_defaults"],
39 // Tag this module as a cts test artifact
40 test_suites: [
41 "cts",
Dan Shiefdc7e12020-03-19 12:07:49 -070042 "vts10",
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070043 "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
Sasha Smundakf72cf552019-03-27 15:58:27 -070057android_test_helper_app {
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070058 name: "CtsAccountCheckTestOnlyOwnerUpdateApp",
59 defaults: ["cts_defaults"],
60 // Tag this module as a cts test artifact
61 test_suites: [
62 "cts",
Dan Shiefdc7e12020-03-19 12:07:49 -070063 "vts10",
Sasha Smundak2d1c35e2019-03-10 18:57:41 -070064 "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}