Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e96d542 authored by Vinay Verma's avatar Vinay Verma Committed by LuK1337
Browse files

Add vendor version for libgui

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
parent 4df02db8
Loading
Loading
Loading
Loading
+17 −7
Original line number Diff line number Diff line
@@ -17,13 +17,8 @@ cc_library_headers {
    export_include_dirs: ["include"],
}

cc_library_shared {
    name: "libgui",
    vendor_available: false,
    vndk: {
        enabled: true,
    },

cc_defaults {
    name: "libgui_defaults",
    clang: true,
    cflags: [
        "-Wall",
@@ -183,4 +178,19 @@ cc_library_shared {
    ],
}

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

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

subdirs = ["tests"]