summaryrefslogtreecommitdiff
path: root/opengl
diff options
context:
space:
mode:
author Dan Albert <danalbert@google.com> 2024-08-14 22:25:10 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-08-14 22:25:10 +0000
commitaa61e92889edf4a8c796e6e41911bee55210ee93 (patch)
tree1b69ed9e48cc3d4e57abb72eef2639d699fd6ea1 /opengl
parenta3dba622d541aa7aaf530cbe531a7d003b12ac49 (diff)
parent965818ab5d065af2fc13a827ba26cf1bf23adad7 (diff)
Merge "Revert^2 "Skip C-verification of GL headers."" into main
Diffstat (limited to 'opengl')
-rw-r--r--opengl/Android.bp12
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 {