summaryrefslogtreecommitdiff
path: root/opengl
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2024-08-08 21:37:29 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-08-08 21:37:29 +0000
commit163c54a5018600d16188e39220d4ae562893a9ee (patch)
tree89a6edd5b4d34caffd6f786d31b4f3aef53b9144 /opengl
parentd36a990e2af9fdfea104f00229387d10d2ef632d (diff)
parent25ac318e203705c7a7a96d25cbf20803fd478cf7 (diff)
Merge "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 {