diff options
author | Brian Osman <brianosman@google.com> | 2017-12-08 11:33:52 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-12-08 16:55:10 +0000 |
commit | e562f413ea3877842cbb8bc8711053ab06c9d9d9 (patch) | |
tree | cde527ea8390321c9d7b1179b1f0852ea4726b79 /third_party/angle2 | |
parent | f55e1ef1ba3d73e809b8604d4a830504b51440c8 (diff) |
Update Windows clang asset
For reference, the version number is pulled from:
chromium/src/third_party/llvm-build/cr_build_revision
This version of clang includes fixes for bugs in the latest
Windows 10 SDK headers.
Bug: skia:
Change-Id: Ieee6eb2dff2f98a2340a8433135b6c3f916c0577
Reviewed-on: https://skia-review.googlesource.com/82721
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
Reviewed-by: Eric Boren <borenet@google.com>
Diffstat (limited to 'third_party/angle2')
-rw-r--r-- | third_party/angle2/BUILD.gn | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/third_party/angle2/BUILD.gn b/third_party/angle2/BUILD.gn index c540bfa669..cb780c238d 100644 --- a/third_party/angle2/BUILD.gn +++ b/third_party/angle2/BUILD.gn @@ -63,6 +63,10 @@ config("common") { # Allow noexcept, even though we build without exceptions cflags_cc += [ "/wd4577" ] + if (is_clang) { + # utilities.cpp includes an 'unsigned long' <= UINT_MAX check + cflags_cc += [ "-Wno-tautological-constant-compare" ] + } } } |