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

Side by Side Diff: xfa.gyp

Issue 1767263002: Suppress C4201 for Windows build. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: disable for GYP as well to keep things consistent Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "variables": { 2 "variables": {
3 "pdf_enable_v8%": 1, 3 "pdf_enable_v8%": 1,
4 }, 4 },
5 "target_defaults": { 5 "target_defaults": {
6 "defines": [ 6 "defines": [
7 "PDF_ENABLE_XFA", 7 "PDF_ENABLE_XFA",
8 ], 8 ],
9 'msvs_disabled_warnings': [ 9 'msvs_disabled_warnings': [
10 4005, 4018, 4146, 4333, 4345, 4267, 10 4005, 4018, 4146, 4333, 4345, 4267,
11 # TODO(ochang): Investigate if this can be fixed properly.
12 4201,
11 # TODO(thestig): Fix all instances, remove this, pdfium:29 13 # TODO(thestig): Fix all instances, remove this, pdfium:29
12 4245, 4310, 4389, 4701, 4702, 4706, 4800, 14 4245, 4310, 4389, 4701, 4702, 4706, 4800,
13 ], 15 ],
14 'variables': { 16 'variables': {
15 'clang_warning_flags': [ 17 'clang_warning_flags': [
16 # TODO(thestig): Fix all instances, remove this, pdfium:29 18 # TODO(thestig): Fix all instances, remove this, pdfium:29
17 '-Wno-sign-compare', 19 '-Wno-sign-compare',
18 ], 20 ],
19 # Make sure Chromium's build/common.gypi doesn't re-add the flag on linux. 21 # Make sure Chromium's build/common.gypi doesn't re-add the flag on linux.
20 'cflags_cc!': [ '-Wsign-compare' ], 22 'cflags_cc!': [ '-Wsign-compare' ],
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 "sources": [], 704 "sources": [],
703 }], 705 }],
704 ["OS == 'mac'", { 706 ["OS == 'mac'", {
705 "configurations": {}, 707 "configurations": {},
706 "sources": [], 708 "sources": [],
707 }], 709 }],
708 ] 710 ]
709 } 711 }
710 ] 712 ]
711 } 713 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698