OLD | NEW |
1 { | 1 { |
2 'includes': ['defaults.gypi'], | 2 'includes': ['defaults.gypi'], |
3 | 3 |
4 'variables': { | 4 'variables': { |
5 'build_type%': 'devbuild', | 5 'build_type%': 'devbuild', |
6 'build_version%': '', | 6 'build_version%': '', |
7 }, | 7 }, |
8 | 8 |
9 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 'src/plugin/SinkPolicy.inl', | 143 'src/plugin/SinkPolicy.inl', |
144 ], | 144 ], |
145 'include_dirs': [ | 145 'include_dirs': [ |
146 '$(WindowsSDK_IncludePath)', | 146 '$(WindowsSDK_IncludePath)', |
147 '$(VCInstallDir)atlmfc/include', | 147 '$(VCInstallDir)atlmfc/include', |
148 '$(WINDDKDIR)/inc/atl71', | 148 '$(WINDDKDIR)/inc/atl71', |
149 ], | 149 ], |
150 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or
a DLL | 150 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or
a DLL |
151 # That Is Brought into a Process" on the link here: | 151 # That Is Brought into a Process" on the link here: |
152 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85
%29.aspx#using_manifests | 152 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85
%29.aspx#using_manifests |
153 'defines': ['PRODUCT_ADBLOCKPLUS', 'ISOLATION_AWARE_ENABLED'], | 153 'defines': ['ISOLATION_AWARE_ENABLED'], |
154 'libraries': [ | 154 'libraries': [ |
155 '-lwinhttp', | 155 '-lwinhttp', |
156 '-lshell32', | 156 '-lshell32', |
157 '-lComctl32', | 157 '-lComctl32', |
158 '-lGdi32', | 158 '-lGdi32', |
159 ], | 159 ], |
160 'configurations': { | 160 'configurations': { |
161 # 'libraries' is not allowed under 'configurations' :-( | 161 # 'libraries' is not allowed under 'configurations' :-( |
162 'Debug': { | 162 'Debug': { |
163 'msvs_settings': { | 163 'msvs_settings': { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 212 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
213 }, | 213 }, |
214 'msvs_settings': { | 214 'msvs_settings': { |
215 'VCLinkerTool': { | 215 'VCLinkerTool': { |
216 'SubSystem': '1', # Console | 216 'SubSystem': '1', # Console |
217 'EntryPointSymbol': 'mainCRTStartup', | 217 'EntryPointSymbol': 'mainCRTStartup', |
218 }, | 218 }, |
219 }, | 219 }, |
220 }] | 220 }] |
221 } | 221 } |
OLD | NEW |