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

Side by Side Diff: pdfium.gyp

Issue 302453004: Move linker settings from standalone.gypi to pdfium.gyp, since they're needed when linking pdfium_t… (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 6 years, 7 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/standalone.gypi ('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 'win_third_party_warn_as_error': 'false', 3 'win_third_party_warn_as_error': 'false',
4 'pdf_use_skia%': 0, 4 'pdf_use_skia%': 0,
5 }, 5 },
6 'target_defaults': { 6 'target_defaults': {
7 'defines' : [ 7 'defines' : [
8 'FOXIT_CHROME_BUILD', 8 'FOXIT_CHROME_BUILD',
9 '_FXFT_VERSION_=2501', 9 '_FXFT_VERSION_=2501',
10 '_FPDFSDK_LIB', 10 '_FPDFSDK_LIB',
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 'fpdfsdk/src/resource.h', 112 'fpdfsdk/src/resource.h',
113 'fpdfsdk/include/fpdf_transformpage.h', 113 'fpdfsdk/include/fpdf_transformpage.h',
114 'fpdfsdk/src/fpdf_transformpage.cpp', 114 'fpdfsdk/src/fpdf_transformpage.cpp',
115 ], 115 ],
116 'conditions': [ 116 'conditions': [
117 ['OS!="win"', { 117 ['OS!="win"', {
118 'sources!': [ 118 'sources!': [
119 'fpdfsdk/src/fpdfsdkdll.rc', 119 'fpdfsdk/src/fpdfsdkdll.rc',
120 ], 120 ],
121 }], 121 }],
122 ['OS=="mac"', {
123 'link_settings': {
124 'libraries': [
125 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
126 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
127 ],
128 },
129 }],
122 ], 130 ],
131 'msvs_settings': {
132 'VCLinkerTool': {
133 'AdditionalDependencies': [
134 'advapi32.lib',
135 'gdi32.lib',
136 'user32.lib',
137 ],
138 },
139 },
123 }, 140 },
124 { 141 {
125 'target_name': 'fdrm', 142 'target_name': 'fdrm',
126 'type': 'static_library', 143 'type': 'static_library',
127 'ldflags': [ '-L<(PRODUCT_DIR)',], 144 'ldflags': [ '-L<(PRODUCT_DIR)',],
128 'sources': [ 145 'sources': [
129 'core/include/fdrm/fx_crypt.h', 146 'core/include/fdrm/fx_crypt.h',
130 'core/src/fdrm/crypto/fx_crypt.cpp', 147 'core/src/fdrm/crypto/fx_crypt.cpp',
131 'core/src/fdrm/crypto/fx_crypt_aes.cpp', 148 'core/src/fdrm/crypto/fx_crypt_aes.cpp',
132 'core/src/fdrm/crypto/fx_crypt_sha.cpp', 149 'core/src/fdrm/crypto/fx_crypt_sha.cpp',
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 'fpdfsdk/src/formfiller/FFL_ListBox.cpp', 831 'fpdfsdk/src/formfiller/FFL_ListBox.cpp',
815 'fpdfsdk/src/formfiller/FFL_Notify.cpp', 832 'fpdfsdk/src/formfiller/FFL_Notify.cpp',
816 'fpdfsdk/src/formfiller/FFL_PushButton.cpp', 833 'fpdfsdk/src/formfiller/FFL_PushButton.cpp',
817 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp', 834 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp',
818 'fpdfsdk/src/formfiller/FFL_TextField.cpp', 835 'fpdfsdk/src/formfiller/FFL_TextField.cpp',
819 'fpdfsdk/src/formfiller/FFL_Utils.cpp', 836 'fpdfsdk/src/formfiller/FFL_Utils.cpp',
820 ], 837 ],
821 }, 838 },
822 ], 839 ],
823 } 840 }
OLDNEW
« no previous file with comments | « build/standalone.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698