• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2// Copyright (C) 2020 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_multitasking_windowing",
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: "WMShellFlickerTestsBubbles",
29    defaults: ["WMShellFlickerTestsDefault"],
30    manifest: "AndroidManifest.xml",
31    package_name: "com.android.wm.shell.flicker.bubbles",
32    instrumentation_target_package: "com.android.wm.shell.flicker.bubbles",
33    test_config_template: "AndroidTestTemplate.xml",
34    srcs: ["src/**/*.kt"],
35    static_libs: ["WMShellFlickerTestsBase"],
36    data: ["trace_config/*"],
37}
38
39////////////////////////////////////////////////////////////////////////////////
40// Begin breakdowns for WMShellFlickerTestsBubbles module
41
42test_module_config {
43    name: "WMShellFlickerTestsBubbles-CatchAll",
44    base: "WMShellFlickerTestsBubbles",
45    exclude_filters: [
46        "com.android.wm.shell.flicker.bubble.ChangeActiveActivityFromBubbleTest",
47        "com.android.wm.shell.flicker.bubble.DragToDismissBubbleScreenTest",
48        "com.android.wm.shell.flicker.bubble.OpenActivityFromBubbleOnLocksreenTest",
49        "com.android.wm.shell.flicker.bubble.OpenActivityFromBubbleTest",
50        "com.android.wm.shell.flicker.bubble.SendBubbleNotificationTest",
51    ],
52    test_suites: ["device-tests"],
53}
54
55test_module_config {
56    name: "WMShellFlickerTestsBubbles-ChangeActiveActivityFromBubbleTest",
57    base: "WMShellFlickerTestsBubbles",
58    include_filters: ["com.android.wm.shell.flicker.bubble.ChangeActiveActivityFromBubbleTest"],
59    test_suites: ["device-tests"],
60}
61
62test_module_config {
63    name: "WMShellFlickerTestsBubbles-DragToDismissBubbleScreenTest",
64    base: "WMShellFlickerTestsBubbles",
65    include_filters: ["com.android.wm.shell.flicker.bubble.DragToDismissBubbleScreenTest"],
66    test_suites: ["device-tests"],
67}
68
69test_module_config {
70    name: "WMShellFlickerTestsBubbles-OpenActivityFromBubbleOnLocksreenTest",
71    base: "WMShellFlickerTestsBubbles",
72    include_filters: ["com.android.wm.shell.flicker.bubble.OpenActivityFromBubbleOnLocksreenTest"],
73    test_suites: ["device-tests"],
74}
75
76test_module_config {
77    name: "WMShellFlickerTestsBubbles-OpenActivityFromBubbleTest",
78    base: "WMShellFlickerTestsBubbles",
79    include_filters: ["com.android.wm.shell.flicker.bubble.OpenActivityFromBubbleTest"],
80    test_suites: ["device-tests"],
81}
82
83test_module_config {
84    name: "WMShellFlickerTestsBubbles-SendBubbleNotificationTest",
85    base: "WMShellFlickerTestsBubbles",
86    include_filters: ["com.android.wm.shell.flicker.bubble.SendBubbleNotificationTest"],
87    test_suites: ["device-tests"],
88}
89
90// End breakdowns for WMShellFlickerTestsBubbles module
91////////////////////////////////////////////////////////////////////////////////
92