summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorWill Harris <wfh@chromium.org>2018-08-29 23:28:23 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-29 23:28:23 +0000
commitb6dbcb211b1ecca9aea7afb70de27d216af15ec9 (patch)
tree1d176ae10de1bcc4999d1ca9c3171f4dbc171bd7 /BUILD.gn
parentd5f427901b52e1311ab51f16e87459ec34691591 (diff)
downloadpdfium-b6dbcb211b1ecca9aea7afb70de27d216af15ec9.tar.xz
Change explicit suppression of warning 4267 to a config based suppression.
Remove two unneeded suppressions from pdfium's skia, as these are already covered by the //build/config/compiler:no_chromium_code config. BUG=588506 Change-Id: I347f2c98c6fd13679660fb25df2d2141e9b56e55 Reviewed-on: https://pdfium-review.googlesource.com/41611 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn2
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index e3ba58cf02..27e4b2615a 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -85,11 +85,11 @@ config("pdfium_core_config") {
}
if (is_win) {
cflags += [
- "/wd4267",
"/wd4324",
"/wd4577",
]
}
+ configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
}
config("xfa_warnings") {