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

Side by Side Diff: pdfium.gyp

Issue 398163006: Disable warning 4267 in pdfium until it is fixed. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 6 years, 5 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 | « no previous file | 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_use_skia%': 0, 3 'pdf_use_skia%': 0,
4 }, 4 },
5 'target_defaults': { 5 'target_defaults': {
6 'defines' : [ 6 'defines' : [
7 'FOXIT_CHROME_BUILD', 7 'FOXIT_CHROME_BUILD',
8 '_FXFT_VERSION_=2501', 8 '_FXFT_VERSION_=2501',
9 '_FPDFSDK_LIB', 9 '_FPDFSDK_LIB',
10 '_NO_GDIPLUS_', # workaround text rendering issues on Windows 10 '_NO_GDIPLUS_', # workaround text rendering issues on Windows
(...skipping 22 matching lines...) Expand all
33 }], 33 }],
34 ], 34 ],
35 }], 35 }],
36 ['OS=="mac"', { 36 ['OS=="mac"', {
37 'xcode_settings': { 37 'xcode_settings': {
38 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', 38 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
39 }, 39 },
40 }], 40 }],
41 ], 41 ],
42 'msvs_disabled_warnings': [ 42 'msvs_disabled_warnings': [
43 4005, 4018, 4146, 4333, 4345 43 4005, 4018, 4146, 4333, 4345, 4267
44 ], 44 ],
45 }, 45 },
46 'targets': [ 46 'targets': [
47 { 47 {
48 'target_name': 'pdfium', 48 'target_name': 'pdfium',
49 'type': 'static_library', 49 'type': 'static_library',
50 'dependencies': [ 50 'dependencies': [
51 'safemath', 51 'safemath',
52 'fdrm', 52 'fdrm',
53 'fpdfdoc', 53 'fpdfdoc',
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 'fpdfsdk/src/formfiller/FFL_ListBox.cpp', 847 'fpdfsdk/src/formfiller/FFL_ListBox.cpp',
848 'fpdfsdk/src/formfiller/FFL_Notify.cpp', 848 'fpdfsdk/src/formfiller/FFL_Notify.cpp',
849 'fpdfsdk/src/formfiller/FFL_PushButton.cpp', 849 'fpdfsdk/src/formfiller/FFL_PushButton.cpp',
850 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp', 850 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp',
851 'fpdfsdk/src/formfiller/FFL_TextField.cpp', 851 'fpdfsdk/src/formfiller/FFL_TextField.cpp',
852 'fpdfsdk/src/formfiller/FFL_Utils.cpp', 852 'fpdfsdk/src/formfiller/FFL_Utils.cpp',
853 ], 853 ],
854 }, 854 },
855 ], 855 ],
856 } 856 }
OLDNEW
« 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