blob: e13746ed13dd4ecbbead5df190b4963a91525839 [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.backup-sources",
12 srcs: ["java/**/*.java"],
13 path: "java",
14 visibility: ["//frameworks/base/services"],
15}
16
Colin Crosse0b2ee52017-12-05 09:46:29 -080017java_library_static {
18 name: "services.backup",
Jeff Sharkeyd23b5372020-10-23 14:30:42 -060019 defaults: ["platform_service_defaults"],
Jiyong Parkbae2e902019-11-17 13:11:19 +090020 srcs: [":services.backup-sources"],
Colin Crosse0b2ee52017-12-05 09:46:29 -080021 libs: ["services.core"],
Cole Faust749a6882023-12-20 11:57:03 -080022 static_libs: [
23 "app-compat-annotations",
Cole Faust749a6882023-12-20 11:57:03 -080024 ],
25 lint: {
26 baseline_filename: "lint-baseline.xml",
27 },
Ruslan Tkhakokhovf361f212023-11-01 19:36:33 +000028}
29
30aconfig_declarations {
31 name: "backup_flags",
32 package: "com.android.server.backup",
Yu Liuc4a5c682024-04-02 04:06:48 +000033 container: "system",
Ruslan Tkhakokhovf361f212023-11-01 19:36:33 +000034 srcs: ["flags.aconfig"],
35}