summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2020-01-06 13:58:00 -0800
committer Steven Moreland <smoreland@google.com> 2020-01-06 23:24:24 +0000
commit1ac7ce9647b408043763f4b3da6e7799f8f217d2 (patch)
tree7a8dc0937946cd2691715126a20865133af8b17c
parentae73bff6bfc908e61b7621c081699cc99b8ba921 (diff)
*common: use package as name
In order to provide a more descriptive name, and to be consistent with HIDL, the stable AIDL package names are switching from vintf-*common format to the package format (android.hardware.*common). Bug: N/A Test: all build time Change-Id: Ibbc3ec3d3e76059ff00ac10971520873d54da8c6
-rw-r--r--libs/gralloc/types/Android.bp4
-rw-r--r--libs/ui/Android.bp4
-rw-r--r--services/surfaceflinger/tests/Android.bp2
3 files changed, 5 insertions, 5 deletions
diff --git a/libs/gralloc/types/Android.bp b/libs/gralloc/types/Android.bp
index e1693cf672..00f7484a80 100644
--- a/libs/gralloc/types/Android.bp
+++ b/libs/gralloc/types/Android.bp
@@ -33,16 +33,16 @@ cc_library {
],
shared_libs: [
+ "android.hardware.graphics.common-ndk_platform",
"android.hardware.graphics.mapper@4.0",
"libhidlbase",
"liblog",
- "vintf-graphics-common-ndk_platform",
],
export_shared_lib_headers: [
+ "android.hardware.graphics.common-ndk_platform",
"android.hardware.graphics.mapper@4.0",
"libhidlbase",
- "vintf-graphics-common-ndk_platform",
],
export_include_dirs: [
diff --git a/libs/ui/Android.bp b/libs/ui/Android.bp
index 124bda2fb3..043f2ca3aa 100644
--- a/libs/ui/Android.bp
+++ b/libs/ui/Android.bp
@@ -82,6 +82,7 @@ cc_library_shared {
"android.hardware.graphics.allocator@2.0",
"android.hardware.graphics.allocator@3.0",
"android.hardware.graphics.allocator@4.0",
+ "android.hardware.graphics.common-ndk_platform",
"android.hardware.graphics.common@1.2",
"android.hardware.graphics.mapper@2.0",
"android.hardware.graphics.mapper@2.1",
@@ -94,14 +95,13 @@ cc_library_shared {
"libsync",
"libutils",
"liblog",
- "vintf-graphics-common-ndk_platform",
],
export_shared_lib_headers: [
"android.hardware.graphics.common@1.2",
+ "android.hardware.graphics.common-ndk_platform",
"android.hardware.graphics.mapper@4.0",
"libgralloctypes",
- "vintf-graphics-common-ndk_platform",
],
static_libs: [
diff --git a/services/surfaceflinger/tests/Android.bp b/services/surfaceflinger/tests/Android.bp
index dcfc0773c4..a4d9ff3539 100644
--- a/services/surfaceflinger/tests/Android.bp
+++ b/services/surfaceflinger/tests/Android.bp
@@ -42,6 +42,7 @@ cc_test {
"libtrace_proto",
],
shared_libs: [
+ "android.hardware.graphics.common-ndk_platform",
"android.hardware.graphics.common@1.2",
"android.hardware.graphics.composer@2.1",
"libandroid",
@@ -56,7 +57,6 @@ cc_test {
"libtimestats_proto",
"libui",
"libutils",
- "vintf-graphics-common-ndk_platform",
]
}