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

Commit 02f2f613 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge changes from topic "fix-omx-dependencies"

* changes:
  libgui: export EGL headers.
  Make libgui available to vendors
  Headers of libui is moved to the local directory
  Mark EGL/GLES libs as vendor_available
parents d11172e3 c4e88ef4
Loading
Loading
Loading
Loading

include/gui

0 → 120000
+1 −0
Original line number Diff line number Diff line
../libs/gui/include/gui
 No newline at end of file

include/private/gui

0 → 120000
+1 −0
Original line number Diff line number Diff line
../../libs/gui/include/private/gui
 No newline at end of file

include/ui

0 → 120000
+1 −0
Original line number Diff line number Diff line
../libs/ui/include/ui
 No newline at end of file
+16 −0
Original line number Diff line number Diff line
@@ -11,9 +11,15 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
cc_library_headers {
    name: "libgui_headers",
    vendor_available: true,
    export_include_dirs: ["include"],
}

cc_library_shared {
    name: "libgui",
    vendor_available: true,

    clang: true,
    cppflags: [
@@ -117,13 +123,23 @@ cc_library_shared {
        "android.hardware.configstore-utils",
    ],

    header_libs: [
        "libgui_headers",
    ],

    export_shared_lib_headers: [
        "libbinder",
        "libEGL",
        "libnativewindow",
        "libui",
        "android.hidl.token@1.0-utils",
        "android.hardware.graphics.bufferqueue@1.0",
    ],

    export_header_lib_headers: [
        "libgui_headers",
    ],

    export_include_dirs: [
        "include",
    ],
Loading