blob: e132854e628626641309c1dbdb9aa9513a01bc6d [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",
22 "SystemUISharedLib",
23 ],
24 srcs: [
25 "tests/tapl/**/*.java",
Vadim Tryshev5b367af2019-03-06 00:52:00 +000026 "src/com/android/launcher3/util/SecureSettingsObserver.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",
38 "proto_overrides/*.proto",
39 ],
40 sdk_version: "current",
41 proto: {
42 type: "lite",
43 local_include_dirs:[
44 "protos",
45 "proto_overrides",
46 ],
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
51java_library {
52 name: "LauncherPluginLib",
53
54 static_libs: ["PluginCoreLib"],
55
56 srcs: ["src_plugins/**/*.java"],
57
58 sdk_version: "current",
59 min_sdk_version: "28",
60}