diff options
author | ochang <ochang@chromium.org> | 2016-04-05 14:41:25 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-05 14:41:25 -0700 |
commit | e5984e92ff378a86118f1e6428dc325dbde9c409 (patch) | |
tree | 7ec91fd7591ca611ab63ca9c6125e687bf46f2a3 /BUILD.gn | |
parent | 6fb598b9dff93602134f1976443ae6d6ff015c4d (diff) | |
download | pdfium-e5984e92ff378a86118f1e6428dc325dbde9c409.tar.xz |
Suppress some additional msvs warnings (GN).chromium/2706chromium/2705chromium/2703chromium/2702chromium/2701
Fixes GN build after 47ca692.
R=tsepez@chromium.org,weili@chromium.org
Review URL: https://codereview.chromium.org/1862773002
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -42,7 +42,10 @@ config("pdfium_config") { } if (is_win) { - cflags += [ "/wd4267" ] + cflags += [ + "/wd4267", + "/wd4701", + ] } if (is_clang || is_posix) { |