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

Side by Side Diff: xfa.gyp

Issue 2013163003: Change to disable a warning for GCC compilation (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: 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 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 "chromium_code": 1, 3 "chromium_code": 1,
4 "pdf_enable_v8%": 1, 4 "pdf_enable_v8%": 1,
5 }, 5 },
6 "target_defaults": { 6 "target_defaults": {
7 "defines": [ 7 "defines": [
8 "PDF_ENABLE_XFA", 8 "PDF_ENABLE_XFA",
9 ], 9 ],
10 'msvs_disabled_warnings': [ 10 'msvs_disabled_warnings': [
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 "xfa/fxgraphics/cfx_pattern.h", 692 "xfa/fxgraphics/cfx_pattern.h",
693 "xfa/fxgraphics/cfx_shading.cpp", 693 "xfa/fxgraphics/cfx_shading.cpp",
694 "xfa/fxgraphics/cfx_shading.h", 694 "xfa/fxgraphics/cfx_shading.h",
695 "xfa/fxgraphics/include/cfx_graphics.h", 695 "xfa/fxgraphics/include/cfx_graphics.h",
696 "xfa/fxjse/include/fxjse.h", 696 "xfa/fxjse/include/fxjse.h",
697 ], 697 ],
698 "conditions": [ 698 "conditions": [
699 ["clang==1" , { 699 ["clang==1" , {
700 }], 700 }],
701 ["os_posix==1 and clang==0", { # When GCC 701 ["os_posix==1 and clang==0", { # When GCC
702 'cflags': [ '-Wno-error=strict-overflow' ], 702 'cflags': [ '-Wno-strict-overflow' ],
703 }], 703 }],
704 ["pdf_enable_v8==1", { 704 ["pdf_enable_v8==1", {
705 'dependencies': [ 705 'dependencies': [
706 '<(DEPTH)/v8/src/v8.gyp:v8', 706 '<(DEPTH)/v8/src/v8.gyp:v8',
707 ], 707 ],
708 'export_dependent_settings': [ 708 'export_dependent_settings': [
709 '<(DEPTH)/v8/src/v8.gyp:v8', 709 '<(DEPTH)/v8/src/v8.gyp:v8',
710 ], 710 ],
711 'include_dirs': [ 711 'include_dirs': [
712 '<(DEPTH)/v8', 712 '<(DEPTH)/v8',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 "sources": [], 749 "sources": [],
750 }], 750 }],
751 ["OS == 'mac'", { 751 ["OS == 'mac'", {
752 "configurations": {}, 752 "configurations": {},
753 "sources": [], 753 "sources": [],
754 }], 754 }],
755 ] 755 ]
756 } 756 }
757 ] 757 ]
758 } 758 }
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