• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2018 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_applicable_licenses: ["Android-Apache-2.0"],
17}
18
19java_library {
20    name: "platform-test-rules",
21    static_libs: [
22        "androidx.test.runner",
23        "androidx.test.uiautomator_uiautomator",
24        "app-helpers-handheld-interfaces",
25        "collector-device-lib",
26        "collector-device-lib-platform",
27        "guava",
28        "memory-helper",
29        "package-helper",
30        "launcher-aosp-tapl",
31        "flickerlib",
32        "statsd-helper",
33        "health-testing-utils",
34        "ub-uiautomator",
35        "uiautomator-helpers",
36    ],
37    srcs: [
38        "src/**/*.java",
39        "src/**/*.kt",
40    ],
41}
42
43java_library {
44    name: "platform-test-core-rules",
45    sdk_version: "test_current",
46    static_libs: [
47        "androidx.test.runner",
48        "androidx.test.uiautomator_uiautomator",
49        "app-helpers-handheld-interfaces",
50        "collector-device-lib",
51        "collector-device-lib-platform",
52        "guava",
53        "memory-helper",
54        "package-helper",
55        "statsd-helper",
56        "launcher-aosp-tapl",
57        "health-testing-utils",
58        "ub-uiautomator",
59    ],
60    srcs: ["src/**/*.java"],
61    exclude_srcs: [
62        "src/android/platform/test/rule/flicker/**/*.java",
63    ],
64}
65