@@ -30,6 +30,10 @@ ndk_headers {
3030 to : " " ,
3131 srcs : [" include/EGL/**/*.h" ],
3232 license : " include/EGL/NOTICE" ,
33+ // eglext.h is not self-contained. Safe to skip C-compat verification
34+ // though since upstream also cares about C compatibility, and the header is
35+ // auto-generated anyway.
36+ skip_verification : true ,
3337}
3438
3539ndk_headers {
@@ -38,6 +42,10 @@ ndk_headers {
3842 to : " " ,
3943 srcs : [" include/GLES/**/*.h" ],
4044 license : " include/GLES/NOTICE" ,
45+ // glext.h is not self-contained. Safe to skip C-compat verification
46+ // though since upstream also cares about C compatibility, and the header is
47+ // auto-generated anyway.
48+ skip_verification : true ,
4149}
4250
4351ndk_headers {
@@ -46,6 +54,10 @@ ndk_headers {
4654 to : " " ,
4755 srcs : [" include/GLES2/**/*.h" ],
4856 license : " include/GLES2/NOTICE" ,
57+ // gl2ext.h is not self-contained. Safe to skip C-compat verification
58+ // though since upstream also cares about C compatibility, and the header is
59+ // auto-generated anyway.
60+ skip_verification : true ,
4961}
5062
5163ndk_headers {
0 commit comments