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

Side by Side Diff: pdfium.gyp

Issue 299353008: Fix build error on Windows stand alone build. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 6 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 | « 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 '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"', { 122 ],
123 'link_settings': { 123 'all_dependent_settings': {
124 'libraries': [ 124 'msvs_settings': {
125 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 125 'VCLinkerTool': {
126 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 126 'AdditionalDependencies': [
127 'advapi32.lib',
128 'gdi32.lib',
129 'user32.lib',
127 ], 130 ],
128 }, 131 },
129 }],
130 ],
131 'msvs_settings': {
132 'VCLinkerTool': {
133 'AdditionalDependencies': [
134 'advapi32.lib',
135 'gdi32.lib',
136 'user32.lib',
137 ],
138 }, 132 },
133 'conditions': [
134 ['OS=="mac"', {
135 'link_settings': {
136 'libraries': [
137 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
138 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
139 ],
140 },
141 }],
142 ],
139 }, 143 },
140 }, 144 },
141 { 145 {
142 'target_name': 'fdrm', 146 'target_name': 'fdrm',
143 'type': 'static_library', 147 'type': 'static_library',
144 'ldflags': [ '-L<(PRODUCT_DIR)',], 148 'ldflags': [ '-L<(PRODUCT_DIR)',],
145 'sources': [ 149 'sources': [
146 'core/include/fdrm/fx_crypt.h', 150 'core/include/fdrm/fx_crypt.h',
147 'core/src/fdrm/crypto/fx_crypt.cpp', 151 'core/src/fdrm/crypto/fx_crypt.cpp',
148 'core/src/fdrm/crypto/fx_crypt_aes.cpp', 152 'core/src/fdrm/crypto/fx_crypt_aes.cpp',
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 'fpdfsdk/src/formfiller/FFL_ListBox.cpp', 835 'fpdfsdk/src/formfiller/FFL_ListBox.cpp',
832 'fpdfsdk/src/formfiller/FFL_Notify.cpp', 836 'fpdfsdk/src/formfiller/FFL_Notify.cpp',
833 'fpdfsdk/src/formfiller/FFL_PushButton.cpp', 837 'fpdfsdk/src/formfiller/FFL_PushButton.cpp',
834 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp', 838 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp',
835 'fpdfsdk/src/formfiller/FFL_TextField.cpp', 839 'fpdfsdk/src/formfiller/FFL_TextField.cpp',
836 'fpdfsdk/src/formfiller/FFL_Utils.cpp', 840 'fpdfsdk/src/formfiller/FFL_Utils.cpp',
837 ], 841 ],
838 }, 842 },
839 ], 843 ],
840 } 844 }
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