1// Copyright (C) 2017 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: "CtsDeviceAdminService1",
21    defaults: ["cts_defaults"],
22    srcs: ["src/**/*.java"],
23    resource_dirs: ["res"],
24    static_libs: [
25        "ctstestrunner-axt",
26        "compatibility-device-util-axt",
27    ],
28    libs: ["android.test.base"],
29    sdk_version: "test_current",
30    // tag this module as a cts test artifact
31    test_suites: [
32        "cts",
33        "general-tests",
34        "mts",
35    ],
36    manifest: "package1/AndroidManifest.xml",
37}
38
39android_test_helper_app {
40    name: "CtsDeviceAdminService2",
41    defaults: ["cts_defaults"],
42    srcs: ["src/**/*.java"],
43    resource_dirs: ["res"],
44    static_libs: [
45        "ctstestrunner-axt",
46        "compatibility-device-util-axt",
47    ],
48    libs: ["android.test.base"],
49    sdk_version: "test_current",
50    // tag this module as a cts test artifact
51    test_suites: [
52        "cts",
53        "general-tests",
54        "mts",
55    ],
56    manifest: "package2/AndroidManifest.xml",
57}
58
59android_test_helper_app {
60    name: "CtsDeviceAdminService3",
61    defaults: ["cts_defaults"],
62    srcs: ["src/**/*.java"],
63    resource_dirs: ["res"],
64    static_libs: [
65        "ctstestrunner-axt",
66        "compatibility-device-util-axt",
67    ],
68    libs: ["android.test.base"],
69    sdk_version: "test_current",
70    // tag this module as a cts test artifact
71    test_suites: [
72        "cts",
73        "general-tests",
74        "mts",
75    ],
76    manifest: "package3/AndroidManifest.xml",
77}
78
79android_test_helper_app {
80    name: "CtsDeviceAdminService4",
81    defaults: ["cts_defaults"],
82    srcs: ["src/**/*.java"],
83    resource_dirs: ["res"],
84    static_libs: [
85        "ctstestrunner-axt",
86        "compatibility-device-util-axt",
87    ],
88    libs: ["android.test.base"],
89    sdk_version: "test_current",
90    // tag this module as a cts test artifact
91    test_suites: [
92        "cts",
93        "general-tests",
94        "mts",
95    ],
96    manifest: "package4/AndroidManifest.xml",
97}
98
99android_test_helper_app {
100    name: "CtsDeviceAdminServiceB",
101    defaults: ["cts_defaults"],
102    srcs: ["src/**/*.java"],
103    resource_dirs: ["res"],
104    static_libs: [
105        "ctstestrunner-axt",
106        "compatibility-device-util-axt",
107    ],
108    libs: ["android.test.base"],
109    sdk_version: "test_current",
110    // tag this module as a cts test artifact
111    test_suites: [
112        "cts",
113        "general-tests",
114        "mts",
115    ],
116    manifest: "packageb/AndroidManifest.xml",
117}
118