BUILD.gn: Remove warning suppression for Skia

Skia changed to only use -Weverything for Skia files so we no longer
need to suppress this warning.

Bug: dawn:706
Change-Id: Ifcb2421abd24ec514396b8033057a62abd312e16
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/45608
Commit-Queue: Austin Eng <enga@chromium.org>
Auto-Submit: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
Corentin Wallez 2021-03-23 16:58:50 +00:00 committed by Commit Bot service account
parent 83ee832ebd
commit a82ed35cf1

View File

@ -111,12 +111,6 @@ config("dawn_internal") {
"-Wtautological-unsigned-zero-compare",
]
# Allow comparison against type limits that might be tautological on 32bit
# or 64bit systems. Without this the following produces an error on 64bit:
#
# if (myUint64 > std::numeric_limits<size_t>::max()) {...}
cflags += [ "-Wno-tautological-type-limit-compare" ]
if (is_win) {
cflags += [
# clang-cl doesn't know -pedantic, pass it explicitly to the clang driver