• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2024 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//
15
16package {
17    default_applicable_licenses: ["Android-Apache-2.0"],
18    default_team: "trendy_team_motion",
19}
20
21filegroup {
22    name: "motion_test_template",
23    srcs: ["AndroidTestTemplate.xml"],
24}
25
26java_defaults {
27    name: "MotionTestDefaults",
28    test_config_template: ":motion_test_template",
29    certificate: "platform",
30    platform_apis: true,
31}
32
33filegroup {
34    name: "PlatformMotionTesting-srcs",
35    srcs: [
36        "src/**/*.kt",
37    ],
38}
39
40android_library {
41    name: "PlatformMotionTesting",
42    manifest: "AndroidManifest.xml",
43    platform_apis: true,
44    lint: {
45        test: true,
46    },
47    optimize: {
48        enabled: false,
49    },
50    srcs: [
51        ":PlatformMotionTesting-srcs",
52    ],
53    static_libs: [
54        "platform-screenshot-diff-core",
55        "platform-screenshot-diff-proto",
56        "uiautomator-helpers",
57        "error_prone_annotations",
58        "androidx.test.uiautomator_uiautomator",
59        "androidx.annotation_annotation",
60        "androidx.transition_transition",
61        "androidx.appcompat_appcompat",
62        "androidx.test.ext.junit",
63        "androidx.test.rules",
64        "androidx.test.runner",
65        "truth",
66    ],
67}
68