• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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.backup-sources",
12    srcs: ["java/**/*.java"],
13    path: "java",
14    visibility: ["//frameworks/base/services"],
15}
16
17java_library_static {
18    name: "services.backup",
19    defaults: ["platform_service_defaults"],
20    srcs: [":services.backup-sources"],
21    libs: ["services.core"],
22    static_libs: [
23        "app-compat-annotations",
24    ],
25    lint: {
26        baseline_filename: "lint-baseline.xml",
27    },
28}
29
30aconfig_declarations {
31    name: "backup_flags",
32    package: "com.android.server.backup",
33    container: "system",
34    srcs: ["flags.aconfig"],
35}
36