Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: third_party/libpng/libpng.gyp

Issue 2062423002: Fix performance regression in png encoding caused by libpng update (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libpng/README.chromium ('k') | third_party/libpng/pngwutil.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libpng/libpng.gyp
diff --git a/third_party/libpng/libpng.gyp b/third_party/libpng/libpng.gyp
index 7ce9b5ed7fc18806da1fc3d739520c6a1f54ea5f..7f7b31602719c92c915d869dfacd568f96cd9eb8 100644
--- a/third_party/libpng/libpng.gyp
+++ b/third_party/libpng/libpng.gyp
@@ -47,8 +47,10 @@
'export_dependent_settings': [
'../zlib/zlib.gyp:zlib',
],
- # TODO(jschuh): http://crbug.com/167187
- 'msvs_disabled_warnings': [ 4267 ],
+ 'msvs_disabled_warnings': [
+ 4267, # TODO(jschuh): http://crbug.com/167187
+ 4146, # Unary minus applied to unsigned type.
+ ],
'conditions': [
# Disable ARM optimizations on IOS. Can't find a way to get gyp to even try
# to compile the optimization files. This works fine on GN.
« no previous file with comments | « third_party/libpng/README.chromium ('k') | third_party/libpng/pngwutil.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698