summaryrefslogtreecommitdiff
path: root/opengl
diff options
context:
space:
mode:
author Dan Albert <danalbert@google.com> 2024-08-14 22:40:51 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2024-08-14 22:40:51 +0000
commitc1f905d1fd838a4680f525cd406ea81d12bb5b65 (patch)
tree23a6248cdaba42c4f31ee32bf8aa1ca9937fdc35 /opengl
parented53d61cc1b621bb03cc947f3d253e22dbce76ec (diff)
parentaa61e92889edf4a8c796e6e41911bee55210ee93 (diff)
Merge "Revert^2 "Skip C-verification of GL headers."" into main am: aa61e92889
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/3218118 Change-Id: I91626c83e0c0ac0e8dc746ef02494c126adaf53c Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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 {