1// Copyright (C) 2008 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_ui_toolkit",
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20android_test {
21    name: "CtsViewTestCases",
22    defaults: ["cts_defaults"],
23
24    // Tag this module as a cts test artifact
25    test_suites: [
26        "cts",
27        "general-tests",
28    ],
29
30    compile_multilib: "both",
31
32    libs: [
33        "android.test.runner.stubs",
34        "android.test.base.stubs",
35    ],
36
37    static_libs: [
38        "android.view.flags-aconfig-java",
39        "androidx.test.rules",
40        "androidx.test.ext.junit",
41        "compatibility-device-util-axt",
42        "ctsdeviceutillegacy-axt",
43        "ctstestrunner-axt",
44        "cts-input-lib",
45        "cts-hardware-lib",
46        "junit-params",
47        "mockito-target-minus-junit4",
48        "platform-test-annotations",
49        "androidx.test.uiautomator_uiautomator",
50        "truth",
51        "CtsSurfaceValidatorLib",
52        "cts-wm-util",
53        "flag-junit",
54        "android.view.flags-aconfig-java",
55        "android.view.inputmethod.flags-aconfig-java",
56        "com.android.input.flags-aconfig-java",
57        "ui-trace-collector",
58        "collector-device-lib",
59        "hwui_flags_java_lib",
60    ],
61
62    jni_libs: [
63        "libctsview_jni",
64        "libnativehelper_compat_libc++",
65    ],
66
67    srcs: [
68        "src/**/*.java",
69        "src/**/*.kt",
70    ],
71
72    sdk_version: "test_current",
73}
74