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

Commit c9576892 authored by Cody Northrop's avatar Cody Northrop
Browse files

Reland "EGL: Refactor multifile blobcache"

This reverts commit b81edf95

Previous revert was due to selinux denials causing test failures.
Temporarily addressed in aosp/2420100

This also incorporates additional post-submit feedback on ag/21091488

Test: pubg_mobile_launch ANGLE trace
Test: /data/nativetest64/EGL_test/EGL_test
Test: /data/nativetest64/libEGL_test/libEGL_test
Bug: b/266725576
Change-Id: I5631301c69605f25cbca52ca8ef096294c2e1bcf
parent b03b5cee
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -144,6 +144,7 @@ cc_library_static {
    srcs: [
        "EGL/BlobCache.cpp",
        "EGL/FileBlobCache.cpp",
        "EGL/MultifileBlobCache.cpp",
    ],
    export_include_dirs: ["EGL"],
}
@@ -160,7 +161,6 @@ cc_library_shared {
    srcs: [
        "EGL/egl_tls.cpp",
        "EGL/egl_cache.cpp",
        "EGL/egl_cache_multifile.cpp",
        "EGL/egl_display.cpp",
        "EGL/egl_object.cpp",
        "EGL/egl_layers.cpp",
@@ -205,6 +205,11 @@ cc_test {
    srcs: [
        "EGL/BlobCache.cpp",
        "EGL/BlobCache_test.cpp",
        "EGL/MultifileBlobCache.cpp",
        "EGL/MultifileBlobCache_test.cpp",
    ],
    shared_libs: [
        "libutils",
    ],
}

Loading