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_team: "trendy_team_framework_android_packages",
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20android_test_helper_app {
21    name: "CtsDynamicMimeHelperApp",
22    defaults: ["cts_support_defaults"],
23    static_libs: ["CtsDynamicMimeCommon"],
24    srcs: ["src/**/*.java"],
25    // Tag this module as a cts test artifact
26    test_suites: [
27        "cts",
28        "general-tests",
29    ],
30    sdk_version: "test_current",
31    manifest: "manifests/AndroidManifest_helper.xml",
32}
33
34android_test_helper_app {
35    name: "CtsDynamicMimeUpdateAppFirstGroup",
36    defaults: ["cts_support_defaults"],
37    static_libs: ["CtsDynamicMimeCommon"],
38    srcs: ["src/**/*.java"],
39    // Tag this module as a cts test artifact
40    test_suites: [
41        "cts",
42        "general-tests",
43    ],
44    sdk_version: "test_current",
45    manifest: "manifests/AndroidManifest_update_firstGroup.xml",
46}
47
48android_test_helper_app {
49    name: "CtsDynamicMimeUpdateAppSecondGroup",
50    defaults: ["cts_support_defaults"],
51    static_libs: ["CtsDynamicMimeCommon"],
52    srcs: ["src/**/*.java"],
53    // Tag this module as a cts test artifact
54    test_suites: [
55        "cts",
56        "general-tests",
57    ],
58    sdk_version: "test_current",
59    manifest: "manifests/AndroidManifest_update_secondGroup.xml",
60}
61
62android_test_helper_app {
63    name: "CtsDynamicMimeUpdateAppBothGroups",
64    defaults: ["cts_support_defaults"],
65    static_libs: ["CtsDynamicMimeCommon"],
66    srcs: ["src/**/*.java"],
67    // Tag this module as a cts test artifact
68    test_suites: [
69        "cts",
70        "general-tests",
71    ],
72    sdk_version: "test_current",
73    manifest: "manifests/AndroidManifest_update_bothGroups.xml",
74}
75
76android_test_helper_app {
77    name: "CtsDynamicMimePreferredApp",
78    defaults: ["cts_support_defaults"],
79    static_libs: ["CtsDynamicMimeCommon"],
80    srcs: ["src/**/*.java"],
81    // Tag this module as a cts test artifact
82    test_suites: [
83        "cts",
84        "general-tests",
85    ],
86    sdk_version: "test_current",
87    manifest: "manifests/AndroidManifest_preferred.xml",
88}
89