diff options
author | Jiyong Park <jiyong@google.com> | 2022-04-28 08:07:53 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2022-04-28 08:07:53 +0900 |
commit | 9264d3f783f77baba2a0b12b4d80361be759bb7a (patch) | |
tree | 41e20e910f00ac2a5bcc9c4985a25c347843f758 /graphics | |
parent | e35b07b08945601768dd0c390358b7cc73cd00c8 (diff) |
Finalize android.hardware.graphics.common-V3
For some unknown reason, the Android.bp file was not updated when
freezeing the V3 of android.hardware.graphics.common interface. Fixing
it manually.
Bug: 230660133
Test: `m nothing` with https://googleplex-android-review.git.corp.google.com/q/topic:Tiramisu-SDK-Finalization-rel
Change-Id: I4bf6548e1200864810bcf8a7c1025ba56d48747b
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/common/aidl/Android.bp | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/graphics/common/aidl/Android.bp b/graphics/common/aidl/Android.bp index d44252a61b..40a575d555 100644 --- a/graphics/common/aidl/Android.bp +++ b/graphics/common/aidl/Android.bp @@ -40,8 +40,24 @@ aidl_interface { min_sdk_version: "29", }, }, - versions: [ - "1", - "2", + versions_with_info: [ + { + version: "1", + imports: [ + "android.hardware.common-V2", + ], + }, + { + version: "2", + imports: [ + "android.hardware.common-V2", + ], + }, + { + version: "3", + imports: [ + "android.hardware.common-V2", + ], + }, ], } |