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        "androidx.test.uiautomator_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-permission",
41    ],
42    manifest: "sharingapp1/AndroidManifest.xml",
43    sdk_version: "test_current",
44}
45
46android_test_helper_app {
47    name: "SharingApp2",
48    defaults: ["cts_defaults"],
49    platform_apis: true,
50    srcs: ["sharingapp2/src/**/*.java"],
51    libs: [
52        "android.test.runner",
53        "android.test.base",
54    ],
55    static_libs: [
56        "compatibility-device-util-axt",
57        "ctstestrunner-axt",
58        "androidx.test.uiautomator_uiautomator",
59        "cts-security-test-support-library",
60        "androidx.legacy_legacy-support-v4",
61    ],
62    min_sdk_version: "23",
63    // tag this module as a cts test artifact
64    test_suites: [
65        "cts",
66        "general-tests",
67        "mts-permission",
68    ],
69    manifest: "sharingapp2/AndroidManifest.xml",
70    sdk_version: "test_current",
71}
72