Skip to content

Commit

Permalink
Add vendor version for libgui
Browse files Browse the repository at this point in the history
libstagefright_omx library need to be extended to vendor which
is depenednet on libgui which is a vndk_private lib.
Creating vendor version so that libstagefright_omx_ext can link
to libgui_vendor.

CRs-Fixed: 2258968
Change-Id: I777eebffc405c8bb74aab270e9f272c806501458
  • Loading branch information
Vinay Verma authored and Linux4 committed Sep 4, 2024
1 parent f7274fc commit 6d8cf3e
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions libs/gui/Android.bp
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,8 @@ cc_defaults {
],
}

cc_library_shared {
name: "libgui",
vendor_available: true,
cc_defaults {
name: "libgui_defaults",
double_loadable: true,

defaults: [
Expand Down Expand Up @@ -353,6 +352,18 @@ cc_library_shared {
],
}

cc_library_shared {
name: "libgui",
vendor_available: true,
defaults: ["libgui_defaults"]
}

cc_library {
name: "libgui_vendor",
vendor: true,
defaults: ["libgui_defaults"],
}

// Used by media codec services exclusively as a static lib for
// core bufferqueue support only.
cc_library_static {
Expand Down

0 comments on commit 6d8cf3e

Please sign in to comment.