1// Copyright (C) 2020 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: "SharingApp1",
21    defaults: ["cts_defaults"],
22    platform_apis: true,
23    srcs: ["sharingapp1/src/**/*.java"],
24    libs: [
25        "android.test.runner",
26        "android.test.base",
27    ],
28    static_libs: [
29        "compatibility-device-util-axt",
30        "ctstestrunner-axt",
31        "ub-uiautomator",
32        "cts-security-test-support-library",
33        "androidx.legacy_legacy-support-v4",
34    ],
35    min_sdk_version: "23",
36    // tag this module as a cts test artifact
37    test_suites: [
38        "cts",
39        "general-tests",
40        "mts",
41    ],
42    manifest: "sharingapp1/AndroidManifest.xml",
43}
44
45android_test_helper_app {
46    name: "SharingApp2",
47    defaults: ["cts_defaults"],
48    platform_apis: true,
49    srcs: ["sharingapp2/src/**/*.java"],
50    libs: [
51        "android.test.runner",
52        "android.test.base",
53    ],
54    static_libs: [
55        "compatibility-device-util-axt",
56        "ctstestrunner-axt",
57        "ub-uiautomator",
58        "cts-security-test-support-library",
59        "androidx.legacy_legacy-support-v4",
60    ],
61    min_sdk_version: "23",
62    // tag this module as a cts test artifact
63    test_suites: [
64        "cts",
65        "general-tests",
66        "mts",
67    ],
68    manifest: "sharingapp2/AndroidManifest.xml",
69}
70