blob: d3ef6dc472568812fd89196f88626aed4473b511 [file] [log] [blame]
Bob Badoure539dba2021-02-12 17:07:05 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
Jiyong Parkbae2e902019-11-17 13:11:19 +090010filegroup {
11 name: "services.companion-sources",
Guojing Yuanf1196ee2021-09-27 20:06:58 +000012 srcs: [
13 "java/**/*.java",
14 "java/**/*.proto",
15 ],
Jiyong Parkbae2e902019-11-17 13:11:19 +090016 path: "java",
17 visibility: ["//frameworks/base/services"],
18}
19
Colin Crosse0b2ee52017-12-05 09:46:29 -080020java_library_static {
21 name: "services.companion",
Jeff Sharkeyd23b5372020-10-23 14:30:42 -060022 defaults: ["platform_service_defaults"],
Guojing Yuanf1196ee2021-09-27 20:06:58 +000023 proto: {
24 type: "stream",
25 },
Jiyong Parkbae2e902019-11-17 13:11:19 +090026 srcs: [":services.companion-sources"],
Chilun473d7092021-11-10 23:58:10 +080027 libs: [
28 "app-compat-annotations",
29 "services.core",
30 ],
Colin Crosse0b2ee52017-12-05 09:46:29 -080031}