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

Side by Side Diff: xfa.gyp

Issue 1764503003: Suppress deprecation warnings for XFA. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: 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 | « 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_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 }, 9 },
10 "targets":[ 10 "targets":[
11 { 11 {
12 "target_name":"xfa", 12 "target_name":"xfa",
13 "type":"static_library", 13 "type":"static_library",
14 'include_dirs': [ 14 'include_dirs': [
15 # This is implicit in GN. 15 # This is implicit in GN.
16 '<(DEPTH)', 16 '<(DEPTH)',
17 '.', 17 '.',
18 'third_party/freetype/include', 18 'third_party/freetype/include',
19 'third_party/freetype/include/freetype', 19 'third_party/freetype/include/freetype',
20 ], 20 ],
21 'defines' : [ 21 'defines' : [
22 'FT2_BUILD_LIBRARY', 22 'FT2_BUILD_LIBRARY',
23 ], 23 ],
24 # TODO(tsepez): remove this when FX fixes warnings
dsinclair 2016/03/03 21:08:13 nit: Add pdfium:356 to the TODO.
25 "cflags": [ "-Wno-deprecated-declarations" ],
24 "sources":[ 26 "sources":[
25 "xfa/include/fwl/adapter/fwl_adapternative.h", 27 "xfa/include/fwl/adapter/fwl_adapternative.h",
26 "xfa/include/fwl/adapter/fwl_adapterthreadmgr.h", 28 "xfa/include/fwl/adapter/fwl_adapterthreadmgr.h",
27 "xfa/include/fwl/adapter/fwl_adaptertimermgr.h", 29 "xfa/include/fwl/adapter/fwl_adaptertimermgr.h",
28 "xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h", 30 "xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h",
29 "xfa/include/fwl/adapter/fwl_sdadapterimp.h", 31 "xfa/include/fwl/adapter/fwl_sdadapterimp.h",
30 "xfa/include/fwl/basewidget/fwl_barcode.h", 32 "xfa/include/fwl/basewidget/fwl_barcode.h",
31 "xfa/include/fwl/basewidget/fwl_caret.h", 33 "xfa/include/fwl/basewidget/fwl_caret.h",
32 "xfa/include/fwl/basewidget/fwl_checkbox.h", 34 "xfa/include/fwl/basewidget/fwl_checkbox.h",
33 "xfa/include/fwl/basewidget/fwl_combobox.h", 35 "xfa/include/fwl/basewidget/fwl_combobox.h",
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 "sources": [], 689 "sources": [],
688 }], 690 }],
689 ["OS == 'mac'", { 691 ["OS == 'mac'", {
690 "configurations": {}, 692 "configurations": {},
691 "sources": [], 693 "sources": [],
692 }], 694 }],
693 ] 695 ]
694 } 696 }
695 ] 697 ]
696 } 698 }
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