blob: 0884ef9734b0620fb3a4752b9572403457b2b136 [file] [log] [blame]
Nataniel Borges84828f92023-11-03 14:39:55 +00001//
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 {
Ronish Kaliaf8913972024-02-14 14:30:14 +000018 default_team: "trendy_team_windowing_animations_transitions",
Nataniel Borges84828f92023-11-03 14:39:55 +000019 // 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",
Julien Desprez3f4f2cc2024-05-21 17:53:40 +000032 test_suites: [
33 "device-tests",
34 "device-platinum-tests",
35 ],
Nataniel Borges84828f92023-11-03 14:39:55 +000036 srcs: ["src/**/*"],
37 static_libs: ["FlickerTestsBase"],
Nataniel Borges07979bd2023-12-04 21:47:00 +000038 data: ["trace_config/*"],
Nataniel Borges84828f92023-11-03 14:39:55 +000039}
Nataniel Borges590416b2024-08-12 13:55:00 +000040
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////////////////////////////////////////////////////////////////////////////////