2d9cc70c98
This reverts commit a67d744adbf6935d80d0fa006a485f1e5e88201d. Reason for revert: 4MB services.odex size regression bug: 161089758 test: TH Change-Id: Ifa6f89e2282a3cfd94056b3c409904b7bad77026
24 lines
712 B
Plaintext
24 lines
712 B
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_base_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_base_license"],
|
|
}
|
|
|
|
filegroup {
|
|
name: "services.backup-sources",
|
|
srcs: ["java/**/*.java"],
|
|
path: "java",
|
|
visibility: ["//frameworks/base/services"],
|
|
}
|
|
|
|
java_library_static {
|
|
name: "services.backup",
|
|
defaults: ["platform_service_defaults"],
|
|
srcs: [":services.backup-sources"],
|
|
libs: ["services.core"],
|
|
static_libs: ["backuplib", "app-compat-annotations"],
|
|
}
|