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

Commit b7bba0ab authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Skip C-verification of GL headers." into main am: 163c54a5 am: f5e5a6d1

parents dd9108cf f5e5a6d1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -255,6 +255,9 @@ ndk_headers {
        "include_cpp/android/*.h",
    ],
    license: "NOTICE",
    // These are intentionally not C. It's a mistake that they're in the NDK.
    // See the bug above.
    skip_verification: true,
}

ndk_library {
+12 −0
Original line number Diff line number Diff line
@@ -30,6 +30,10 @@ ndk_headers {
    to: "",
    srcs: ["include/EGL/**/*.h"],
    license: "include/EGL/NOTICE",
    // eglext.h is not self-contained. Safe to skip C-compat verification
    // though since upstream also cares about C compatibility, and the header is
    // auto-generated anyway.
    skip_verification: true,
}

ndk_headers {
@@ -38,6 +42,10 @@ ndk_headers {
    to: "",
    srcs: ["include/GLES/**/*.h"],
    license: "include/GLES/NOTICE",
    // glext.h is not self-contained. Safe to skip C-compat verification
    // though since upstream also cares about C compatibility, and the header is
    // auto-generated anyway.
    skip_verification: true,
}

ndk_headers {
@@ -46,6 +54,10 @@ ndk_headers {
    to: "",
    srcs: ["include/GLES2/**/*.h"],
    license: "include/GLES2/NOTICE",
    // gl2ext.h is not self-contained. Safe to skip C-compat verification
    // though since upstream also cares about C compatibility, and the header is
    // auto-generated anyway.
    skip_verification: true,
}

ndk_headers {