blob: aefbbcadcc1d742e4b2161119944f0dc4eab0bb7 [file] [log] [blame]
Roman Kalukiewicz8beaf2c2024-08-02 17:34:31 -07001package {
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.supervision-sources",
12 srcs: ["java/**/*.java"],
13 path: "java",
14 visibility: ["//frameworks/base/services"],
15}
16
17java_library_static {
18 name: "services.supervision",
19 defaults: ["platform_service_defaults"],
20 srcs: [":services.supervision-sources"],
21 libs: ["services.core"],
Azhara Assanovae19d9162024-09-20 13:39:13 +000022 lint: {
23 baseline_filename: "lint-baseline.xml",
24 },
Roman Kalukiewicz8beaf2c2024-08-02 17:34:31 -070025}