blob: 9d675a4b3e91d59c81a0777f8fcd498d82e470a6 [file] [log] [blame]
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -07001// 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
vadimt09df0832019-03-07 14:59:30 -080015android_library {
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070016 name: "launcher-aosp-tapl",
17 static_libs: [
18 "androidx.annotation_annotation",
Brett Chabotd7d692c2018-10-23 21:17:58 -070019 "androidx.test.runner",
20 "androidx.test.rules",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070021 "androidx.test.uiautomator_uiautomator",
Hyunyoung Songbb715822020-08-04 10:45:53 -070022 "androidx.preference_preference",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070023 "SystemUISharedLib",
24 ],
25 srcs: [
26 "tests/tapl/**/*.java",
vadimt1b383af2019-05-08 15:29:37 -070027 "src/com/android/launcher3/ResourceUtils.java",
Sunny Goyalab3963d2019-05-23 00:50:08 -070028 "src/com/android/launcher3/testing/TestProtocol.java",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070029 ],
vadimt09df0832019-03-07 14:59:30 -080030 manifest: "tests/tapl/AndroidManifest.xml",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070031 platform_apis: true,
32}
thiruram5e1ecf62019-11-13 17:49:35 -080033
34java_library_static {
thiruramc1c2bfa2020-02-04 18:56:40 -080035 name: "launcher_log_protos_lite",
thiruram5e1ecf62019-11-13 17:49:35 -080036 srcs: [
37 "protos/*.proto",
thiruramcbeb13d2021-01-27 14:45:58 -080038 "protos_overrides/*.proto",
thiruram5e1ecf62019-11-13 17:49:35 -080039 ],
40 sdk_version: "current",
41 proto: {
42 type: "lite",
43 local_include_dirs:[
44 "protos",
thiruramcbeb13d2021-01-27 14:45:58 -080045 "protos_overrides",
thiruram5e1ecf62019-11-13 17:49:35 -080046 ],
47 },
thiruramc1c2bfa2020-02-04 18:56:40 -080048 static_libs: ["libprotobuf-java-lite"],
thiruram5e1ecf62019-11-13 17:49:35 -080049}
Hyunyoung Song8605be32020-02-21 14:52:25 -080050
thiruramcbeb13d2021-01-27 14:45:58 -080051java_library_static {
52 name: "launcher_quickstep_log_protos_lite",
53 srcs: [
54 "quickstep/protos_overrides/*.proto",
55 ],
56 sdk_version: "current",
57 proto: {
58 type: "lite",
59 local_include_dirs:[
60 "quickstep/protos_overrides",
61 ],
62 },
63 static_libs: [
64 "libprotobuf-java-lite",
65 "launcher_log_protos_lite"
66 ],
67}
68
Hyunyoung Song8605be32020-02-21 14:52:25 -080069java_library {
70 name: "LauncherPluginLib",
71
72 static_libs: ["PluginCoreLib"],
73
74 srcs: ["src_plugins/**/*.java"],
75
76 sdk_version: "current",
77 min_sdk_version: "28",
78}