Commit e7496f51 by Brian Salomon Committed by Commit Bot

Disable warnings when building in Skia

Bug: skia:11223 Change-Id: Ia634bf0bf7a157c759ae192501ff763a1baa8d2a Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2650986Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent 8d993cb7
......@@ -156,6 +156,11 @@ config("constructor_and_destructor_warnings") {
config("extra_warnings") {
cflags = []
# Avoid failing builds for warnings enabled by Skia build.
if (defined(is_skia_standalone)) {
cflags += [ "-w" ]
}
# Enable more default warnings on Windows.
if (is_win) {
cflags += [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment