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

Commit 91bbdcc9 authored by Justin Yun's avatar Justin Yun
Browse files

Mark libGLESv2.so and libEGL.so as VNDK libs.

libGLESv2.so and libEGL.so are categorized as SP-NDK and
vendor_available. However, they are marked as VNDK because they
are needed by some VNDK libs.

Bug: 63866913
Test: build and boot with BOARD_VNDK_VERSION=current
Change-Id: I6552f34a1d972919f2bf1f4e4dfc81aace431b8d
parent 572aca27
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -117,6 +117,9 @@ cc_library_static {
cc_library_shared {
    name: "libEGL",
    defaults: ["egl_libs_defaults"],
    vndk: {
        enabled: true,
    },
    srcs: [
        "EGL/egl_tls.cpp",
        "EGL/egl_cache.cpp",
@@ -180,6 +183,9 @@ cc_library_shared {
cc_library_shared {
    name: "libGLESv2",
    defaults: ["gles_libs_defaults"],
    vndk: {
        enabled: true,
    },
    srcs: ["GLES2/gl2.cpp"],
    cflags: ["-DLOG_TAG=\"libGLESv2\""],
}