Disable null pointer arithmetic warnings for GLES1 conformance tests

Required for the rest of Chromium to compile with the warning enabled.

Bug: chromium:766891
Change-Id: Ie319df01599434011dc953532a30ad68d6a7c9a3
Reviewed-on: https://chromium-review.googlesource.com/c/1390659
Commit-Queue: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Jamie Madill <jmadill@chromium.org>
This commit is contained in:
Raul Tambre 2018-12-24 20:09:20 +02:00 коммит произвёл Commit Bot
Родитель 8441286093
Коммит 7f6b367497
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -363,6 +363,9 @@ if (build_angle_gles1_conform_tests) {
"-Wno-unused-const-variable",
"-Wno-unused-variable",
"-Wno-int-to-pointer-cast",
# Upstream tests do null pointer arithmetic, so disable those warnings.
"-Wno-null-pointer-arithmetic",
]
}
}