• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    ],
33    static_libs: ["app-helpers-common-interfaces"],
34    srcs: ["auto/**/*.java"],
35    sdk_version: "test_current",
36}
37
38//#####################################
39
40java_library {
41    name: "app-helpers-clockwork-interfaces",
42    libs: [
43        "ub-uiautomator",
44        "app-helpers-core",
45    ],
46    static_libs: ["app-helpers-common-interfaces"],
47    srcs: ["clockwork/**/*.java"],
48    sdk_version: "test_current",
49}
50
51//#####################################
52
53java_library {
54    name: "app-helpers-handheld-interfaces",
55    libs: [
56        "ub-uiautomator",
57        "app-helpers-core",
58    ],
59    static_libs: ["app-helpers-common-interfaces"],
60    srcs: ["handheld/**/*.java"],
61    sdk_version: "test_current",
62}
63
64//#####################################
65
66java_library {
67    name: "app-helpers-tv-interfaces",
68    libs: [
69        "ub-uiautomator",
70        "app-helpers-core",
71        "launcher-helper-lib",
72    ],
73    static_libs: [
74        "app-helpers-common-interfaces",
75        "dpad-util",
76    ],
77    srcs: ["tv/**/*.java"],
78    sdk_version: "test_current",
79}
80