Nataniel Borges | 84828f9 | 2023-11-03 14:39:55 +0000 | [diff] [blame] | 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 | |
| 17 | package { |
Ronish Kalia | f891397 | 2024-02-14 14:30:14 +0000 | [diff] [blame] | 18 | default_team: "trendy_team_windowing_animations_transitions", |
Nataniel Borges | 84828f9 | 2023-11-03 14:39:55 +0000 | [diff] [blame] | 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 | |
| 27 | android_test { |
| 28 | name: "FlickerTestsRotation", |
| 29 | defaults: ["FlickerTestsDefault"], |
| 30 | manifest: "AndroidManifest.xml", |
| 31 | test_config_template: "AndroidTestTemplate.xml", |
Julien Desprez | 3f4f2cc | 2024-05-21 17:53:40 +0000 | [diff] [blame] | 32 | test_suites: [ |
| 33 | "device-tests", |
| 34 | "device-platinum-tests", |
| 35 | ], |
Nataniel Borges | 84828f9 | 2023-11-03 14:39:55 +0000 | [diff] [blame] | 36 | srcs: ["src/**/*"], |
| 37 | static_libs: ["FlickerTestsBase"], |
Nataniel Borges | 07979bd | 2023-12-04 21:47:00 +0000 | [diff] [blame] | 38 | data: ["trace_config/*"], |
Nataniel Borges | 84828f9 | 2023-11-03 14:39:55 +0000 | [diff] [blame] | 39 | } |
Nataniel Borges | 590416b | 2024-08-12 13:55:00 +0000 | [diff] [blame] | 40 | |
| 41 | //////////////////////////////////////////////////////////////////////////////// |
| 42 | // Begin breakdowns for FlickerTestsRotation module |
| 43 | |
| 44 | test_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 | |
| 55 | test_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 | |
| 62 | test_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 | |
| 69 | test_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 | //////////////////////////////////////////////////////////////////////////////// |