1//
2// Copyright (C) 2017 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
17java_library {
18    name: "app-helpers-common-interfaces",
19    libs: ["ub-uiautomator"],
20    static_libs: ["app-helpers-core"],
21    srcs: ["common/**/*.java"],
22    sdk_version: "test_current",
23}
24
25//#####################################
26
27java_library {
28    name: "app-helpers-auto-interfaces",
29    libs: [
30        "ub-uiautomator",
31        "app-helpers-core",
32        "androidx.test.runner",
33    ],
34    static_libs: ["app-helpers-common-interfaces"],
35    srcs: ["auto/**/*.java", "handheld/**/INotificationHelper.java"],
36    sdk_version: "test_current",
37}
38
39//#####################################
40
41java_library {
42    name: "app-helpers-clockwork-interfaces",
43    libs: [
44        "ub-uiautomator",
45        "app-helpers-core",
46    ],
47    static_libs: ["app-helpers-common-interfaces"],
48    srcs: ["clockwork/**/*.java"],
49    sdk_version: "test_current",
50}
51
52//#####################################
53
54java_library {
55    name: "app-helpers-handheld-interfaces",
56    libs: [
57        "ub-uiautomator",
58        "app-helpers-core",
59    ],
60    static_libs: ["app-helpers-common-interfaces"],
61    srcs: ["handheld/**/*.java"],
62    sdk_version: "test_current",
63}
64
65//#####################################
66
67java_library {
68    name: "app-helpers-tv-interfaces",
69    libs: [
70        "ub-uiautomator",
71        "app-helpers-core",
72        "launcher-helper-lib",
73    ],
74    static_libs: [
75        "app-helpers-common-interfaces",
76        "dpad-util",
77    ],
78    srcs: ["tv/**/*.java"],
79    sdk_version: "test_current",
80}
81