blob: 4265a44b7c2527a088dd5ac7b9e2d9ef4d4bd540 [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",
Vadim Tryshev5b367af2019-03-06 00:52:00 +000027 "src/com/android/launcher3/util/SecureSettingsObserver.java",
vadimt1b383af2019-05-08 15:29:37 -070028 "src/com/android/launcher3/ResourceUtils.java",
Sunny Goyalab3963d2019-05-23 00:50:08 -070029 "src/com/android/launcher3/testing/TestProtocol.java",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070030 ],
vadimt09df0832019-03-07 14:59:30 -080031 manifest: "tests/tapl/AndroidManifest.xml",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070032 platform_apis: true,
33}
thiruram5e1ecf62019-11-13 17:49:35 -080034
35java_library_static {
thiruramc1c2bfa2020-02-04 18:56:40 -080036 name: "launcher_log_protos_lite",
thiruram5e1ecf62019-11-13 17:49:35 -080037 srcs: [
38 "protos/*.proto",
39 "proto_overrides/*.proto",
40 ],
41 sdk_version: "current",
42 proto: {
43 type: "lite",
44 local_include_dirs:[
45 "protos",
46 "proto_overrides",
47 ],
48 },
thiruramc1c2bfa2020-02-04 18:56:40 -080049 static_libs: ["libprotobuf-java-lite"],
thiruram5e1ecf62019-11-13 17:49:35 -080050}
Hyunyoung Song8605be32020-02-21 14:52:25 -080051
52java_library {
53 name: "LauncherPluginLib",
54
55 static_libs: ["PluginCoreLib"],
56
57 srcs: ["src_plugins/**/*.java"],
58
59 sdk_version: "current",
60 min_sdk_version: "28",
61}