Merge "Add a platform-compat-config to the framework services."

This commit is contained in:
Anna Trostanetski
2019-08-21 10:53:33 +00:00
committed by Gerrit Code Review
2 changed files with 11 additions and 0 deletions

View File

@@ -244,6 +244,7 @@ java_library {
required: [ required: [
"framework-platform-compat-config", "framework-platform-compat-config",
"libcore-platform-compat-config", "libcore-platform-compat-config",
"services-platform-compat-config",
], ],
} }

View File

@@ -37,6 +37,10 @@ java_library {
"android.hidl.manager-V1.0-java", "android.hidl.manager-V1.0-java",
], ],
plugins: [
"compat-changeid-annotation-processor",
],
// Uncomment to enable output of certain warnings (deprecated, unchecked) // Uncomment to enable output of certain warnings (deprecated, unchecked)
//javacflags: ["-Xlint"], //javacflags: ["-Xlint"],
@@ -50,3 +54,9 @@ cc_library_shared {
defaults: ["libservices.core-libs"], defaults: ["libservices.core-libs"],
whole_static_libs: ["libservices.core"], whole_static_libs: ["libservices.core"],
} }
platform_compat_config {
name: "services-platform-compat-config",
prefix: "services",
src: ":services",
}