blob: 50c8556dfdfe61914b92c77bde0abe66d307c477 [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
Bob Badour4bdf3802021-02-12 17:08:17 -080015package {
16 default_applicable_licenses: ["packages_apps_Launcher3_license"],
17}
18
19// Added automatically by a large-scale-change
20// See: http://go/android-license-faq
21license {
22 name: "packages_apps_Launcher3_license",
23 visibility: [":__subpackages__"],
24 license_kinds: [
25 "SPDX-license-identifier-Apache-2.0",
26 ],
27 license_text: [
28 "NOTICE",
29 ],
30}
31
vadimt09df0832019-03-07 14:59:30 -080032android_library {
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070033 name: "launcher-aosp-tapl",
34 static_libs: [
35 "androidx.annotation_annotation",
Brett Chabotd7d692c2018-10-23 21:17:58 -070036 "androidx.test.runner",
37 "androidx.test.rules",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070038 "androidx.test.uiautomator_uiautomator",
39 "SystemUISharedLib",
40 ],
41 srcs: [
42 "tests/tapl/**/*.java",
Vadim Tryshev5b367af2019-03-06 00:52:00 +000043 "src/com/android/launcher3/util/SecureSettingsObserver.java",
vadimt1b383af2019-05-08 15:29:37 -070044 "src/com/android/launcher3/ResourceUtils.java",
Sunny Goyalab3963d2019-05-23 00:50:08 -070045 "src/com/android/launcher3/testing/TestProtocol.java",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070046 ],
vadimt09df0832019-03-07 14:59:30 -080047 manifest: "tests/tapl/AndroidManifest.xml",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070048 platform_apis: true,
49}
thiruram5e1ecf62019-11-13 17:49:35 -080050
51java_library_static {
thiruramc1c2bfa2020-02-04 18:56:40 -080052 name: "launcher_log_protos_lite",
thiruram5e1ecf62019-11-13 17:49:35 -080053 srcs: [
54 "protos/*.proto",
55 "proto_overrides/*.proto",
56 ],
57 sdk_version: "current",
58 proto: {
59 type: "lite",
60 local_include_dirs:[
61 "protos",
62 "proto_overrides",
63 ],
64 },
thiruramc1c2bfa2020-02-04 18:56:40 -080065 static_libs: ["libprotobuf-java-lite"],
thiruram5e1ecf62019-11-13 17:49:35 -080066}
Hyunyoung Song8605be32020-02-21 14:52:25 -080067
68java_library {
69 name: "LauncherPluginLib",
70
71 static_libs: ["PluginCoreLib"],
72
73 srcs: ["src_plugins/**/*.java"],
74
75 sdk_version: "current",
76 min_sdk_version: "28",
77}