diff options
| author | Nelson Li <nelsonli@google.com> | 2024-12-05 03:43:25 +0000 |
|---|---|---|
| committer | Nelson Li <nelsonli@google.com> | 2024-12-05 03:43:25 +0000 |
| commit | 060df585d543ee733ef3fb355b1f4a0f16f19d05 (patch) | |
| tree | c891f33f8a6866c00be7b3fb01d0dd43fa2e27b9 | |
| parent | 99e23764ed4d96b07890827b34b01ef4762779be (diff) | |
Change TARGET_RECOVERY_UI_LIB to use fully qualified names in redbull
Since the TARGET_RECOVERY_UI_LIB for each device is not exactly the
same, and most of the modules in it contain `soong_namespace{}` to
avoid conflicts between different devices, after converting
`librecovery_ui_ext` from Android.mk to Android.bp, it needs to be
changed to a `fully qualified name` in order to correctly use the
corresponding module.
Flag: EXEMPT refactor
Bug: 339143524
Test: m -j librecovery_ui_ext
Change-Id: Iee116ad6d0efe7fcc321ec9ecec49224b5ba19e2
| -rw-r--r-- | BoardConfig-common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BoardConfig-common.mk b/BoardConfig-common.mk index 17dc8520..cbeed516 100644 --- a/BoardConfig-common.mk +++ b/BoardConfig-common.mk @@ -103,7 +103,7 @@ TARGET_RECOVERY_WIPE := device/google/redbull/recovery.wipe TARGET_RECOVERY_FSTAB := device/google/redbull/fstab.hardware TARGET_RECOVERY_PIXEL_FORMAT := RGBX_8888 TARGET_RECOVERY_UI_LIB := \ - librecovery_ui_pixel \ + //hardware/google/pixel/recovery:librecovery_ui_pixel libfstab # Enable chain partition for system. |
