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

Unified Diff: build/standalone.gypi

Issue 1096463005: Fix pdfium standalone to compile with VS 2015. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Remove /Zc:sizedDealloc- because v8 has a different fix. Created 5 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/standalone.gypi
diff --git a/build/standalone.gypi b/build/standalone.gypi
index 8aecd30446b5ca8bf25f0553d763bfcfa0bcfcfe..87fe3445ab281ae3ecd9b7d765bc62082cb9d0df 100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -163,7 +163,12 @@
'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
'CharacterSet': '1',
},
- 'msvs_disabled_warnings': [4800, 4996],
+ 'msvs_disabled_warnings': [4800, 4996, 4456, 4457, 4458, 4459, 4091],
+ # 4456, 4457, 4458, 4459 are variable shadowing warnings that are new in
+ # VS2015.
+ # C4091: 'typedef ': ignored on left of 'X' when no variable is
+ # declared.
+ # This happens in a number of Windows headers with VS 2015.
'msvs_settings': {
'VCCLCompilerTool': {
'MinimalRebuild': 'false',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698