blob: eb6e468618983cf7e86b9d394afc4687fd48340c [file] [log] [blame]
Oluwarotimi Adesinaa326f0b2024-08-05 18:28:16 +00001package {
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
10filegroup {
11 name: "services.appfunctions-sources",
12 srcs: ["java/**/*.java"],
13 path: "java",
14 visibility: ["//frameworks/base/services"],
15}
16
17java_library_static {
18 name: "services.appfunctions",
19 defaults: ["platform_service_defaults"],
20 srcs: [
21 ":services.appfunctions-sources",
22 "java/**/*.logtags",
23 ],
24 libs: ["services.core"],
Azhara Assanovae19d9162024-09-20 13:39:13 +000025 lint: {
26 baseline_filename: "lint-baseline.xml",
27 },
Oluwarotimi Adesinaa326f0b2024-08-05 18:28:16 +000028}