xref: /aosp_15_r20/frameworks/base/tests/FlickerTests/Rotation/Android.bp (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
1//
2// Copyright (C) 2018 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8//      http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17package {
18    default_team: "trendy_team_windowing_animations_transitions",
19    // See: http://go/android-license-faq
20    // A large-scale-change added 'default_applicable_licenses' to import
21    // all of the 'license_kinds' from "frameworks_base_license"
22    // to get the below license kinds:
23    //   SPDX-license-identifier-Apache-2.0
24    default_applicable_licenses: ["frameworks_base_license"],
25}
26
27android_test {
28    name: "FlickerTestsRotation",
29    defaults: ["FlickerTestsDefault"],
30    manifest: "AndroidManifest.xml",
31    test_config_template: "AndroidTestTemplate.xml",
32    test_suites: [
33        "device-tests",
34        "device-platinum-tests",
35    ],
36    srcs: ["src/**/*"],
37    static_libs: ["FlickerTestsBase"],
38    data: ["trace_config/*"],
39}
40
41////////////////////////////////////////////////////////////////////////////////
42// Begin breakdowns for FlickerTestsRotation module
43
44test_module_config {
45    name: "FlickerTestsAppRotation-CatchAll",
46    base: "FlickerTestsRotation",
47    exclude_filters: [
48        "com.android.server.wm.flicker.rotation.ChangeAppRotationTest",
49        "com.android.server.wm.flicker.rotation.OpenShowWhenLockedSeamlessAppRotationTest",
50        "com.android.server.wm.flicker.rotation.SeamlessAppRotationTest",
51    ],
52    test_suites: ["device-tests"],
53}
54
55test_module_config {
56    name: "FlickerTestsAppRotation-ChangeAppRotationTest",
57    base: "FlickerTestsRotation",
58    include_filters: ["com.android.server.wm.flicker.rotation.ChangeAppRotationTest"],
59    test_suites: ["device-tests"],
60}
61
62test_module_config {
63    name: "FlickerTestsAppRotation-OpenShowWhenLockedSeamlessAppRotationTest",
64    base: "FlickerTestsRotation",
65    include_filters: ["com.android.server.wm.flicker.rotation.OpenShowWhenLockedSeamlessAppRotationTest"],
66    test_suites: ["device-tests"],
67}
68
69test_module_config {
70    name: "FlickerTestsAppRotation-SeamlessAppRotationTest",
71    base: "FlickerTestsRotation",
72    include_filters: ["com.android.server.wm.flicker.rotation.SeamlessAppRotationTest"],
73    test_suites: ["device-tests"],
74}
75
76// End breakdowns for FlickerTestsRotation module
77////////////////////////////////////////////////////////////////////////////////
78