diff options
author | 2024-08-08 22:22:09 +0000 | |
---|---|---|
committer | 2024-08-08 22:22:09 +0000 | |
commit | b7bba0aba6ea04c9a945f01152dedef4d40cde33 (patch) | |
tree | 4788abeecbc0dcdf764a536d1371f692f95cd886 /opengl | |
parent | dd9108cf6ac295549442770a60d1947d47e7582f (diff) | |
parent | f5e5a6d15020f39638f1c9e1d2503c99014184b8 (diff) |
Merge "Skip C-verification of GL headers." into main am: 163c54a501 am: f5e5a6d150
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/3207759
Change-Id: I3052946737f2a3d7886ebcbd84139915d72316bc
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/Android.bp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/opengl/Android.bp b/opengl/Android.bp index 4454f36b67..37dc9314e2 100644 --- a/opengl/Android.bp +++ b/opengl/Android.bp @@ -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 { |