Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: adblockplus.gyp

Issue 6567422169448448: Issue 119 - Switch to injecting CSS for element hiding (Closed)
Patch Set: rebase Created Dec. 1, 2015, 3:45 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/plugin/PluginClass.h » ('j') | src/plugin/PluginClass.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 'defaults.gypi', 3 'defaults.gypi',
4 'common/common.gypi', 4 'common/common.gypi',
5 ], 5 ],
6 6
7 'variables': { 7 'variables': {
8 'build_type%': 'devbuild', 8 'build_type%': 'devbuild',
9 'build_version%': '', 9 'build_version%': '',
10 }, 10 },
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'src/plugin/PluginWbPassThrough.cpp', 142 'src/plugin/PluginWbPassThrough.cpp',
143 'src/plugin/PluginWbPassThrough.h', 143 'src/plugin/PluginWbPassThrough.h',
144 'src/plugin/Resource.h', 144 'src/plugin/Resource.h',
145 'src/plugin/passthroughapp/PassthroughObject.h', 145 'src/plugin/passthroughapp/PassthroughObject.h',
146 'src/plugin/passthroughapp/ProtocolCF.h', 146 'src/plugin/passthroughapp/ProtocolCF.h',
147 'src/plugin/passthroughapp/ProtocolCF.inl', 147 'src/plugin/passthroughapp/ProtocolCF.inl',
148 'src/plugin/passthroughapp/ProtocolImpl.h', 148 'src/plugin/passthroughapp/ProtocolImpl.h',
149 'src/plugin/passthroughapp/ProtocolImpl.inl', 149 'src/plugin/passthroughapp/ProtocolImpl.inl',
150 'src/plugin/passthroughapp/SinkPolicy.h', 150 'src/plugin/passthroughapp/SinkPolicy.h',
151 'src/plugin/passthroughapp/SinkPolicy.inl', 151 'src/plugin/passthroughapp/SinkPolicy.inl',
152 'src/plugin/WebBrowserEventsListener.h',
153 'src/plugin/WebBrowserEventsListener.cpp',
Eric 2015/12/02 17:00:13 All the files in the passthrough directory come af
sergei 2016/02/25 17:48:26 These two lines are moved before passthroughapp.
152 ], 154 ],
153 'include_dirs': [ 155 'include_dirs': [
154 '$(WindowsSDK_IncludePath)', 156 '$(WindowsSDK_IncludePath)',
155 '$(VCInstallDir)atlmfc/include', 157 '$(VCInstallDir)atlmfc/include',
156 '$(WINDDKDIR)/inc/atl71', 158 '$(WINDDKDIR)/inc/atl71',
157 ], 159 ],
158 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or a DLL 160 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or a DLL
159 # That Is Brought into a Process" on the link here: 161 # That Is Brought into a Process" on the link here:
160 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85 %29.aspx#using_manifests 162 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85 %29.aspx#using_manifests
161 'defines': ['ISOLATION_AWARE_ENABLED'], 163 'defines': ['ISOLATION_AWARE_ENABLED'],
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 'src/plugin/PluginClass.cpp', 259 'src/plugin/PluginClass.cpp',
258 'src/plugin/PluginDebug.cpp', 260 'src/plugin/PluginDebug.cpp',
259 'src/plugin/PluginFilter.cpp', 261 'src/plugin/PluginFilter.cpp',
260 'src/plugin/PluginMimeFilterClient.cpp', 262 'src/plugin/PluginMimeFilterClient.cpp',
261 'src/plugin/PluginMutex.cpp', 263 'src/plugin/PluginMutex.cpp',
262 'src/plugin/PluginSettings.cpp', 264 'src/plugin/PluginSettings.cpp',
263 'src/plugin/PluginSystem.cpp', 265 'src/plugin/PluginSystem.cpp',
264 'src/plugin/PluginTabBase.cpp', 266 'src/plugin/PluginTabBase.cpp',
265 'src/plugin/PluginUtil.cpp', 267 'src/plugin/PluginUtil.cpp',
266 'src/plugin/PluginWbPassthrough.cpp', 268 'src/plugin/PluginWbPassthrough.cpp',
269 'src/plugin/WebBrowserEventsListener.h',
270 'src/plugin/WebBrowserEventsListener.cpp',
267 ], 271 ],
268 'include_dirs': [ 272 'include_dirs': [
269 '$(WINDDKDIR)/inc/atl71', 273 '$(WINDDKDIR)/inc/atl71',
270 ], 274 ],
271 'defines': [ 275 'defines': [
272 'WINVER=0x0501', 276 'WINVER=0x0501',
273 'PRODUCT_ADBLOCKPLUS' 277 'PRODUCT_ADBLOCKPLUS'
274 ], 278 ],
275 'link_settings': { 279 'link_settings': {
276 'libraries': ['-ladvapi32', '-lshell32', '-lole32', '-lComctl32', '-lGdi32 '], 280 'libraries': ['-ladvapi32', '-lshell32', '-lole32', '-lComctl32', '-lGdi32 '],
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 'Release': { 312 'Release': {
309 'msvs_settings': { 313 'msvs_settings': {
310 'VCLinkerTool': { 314 'VCLinkerTool': {
311 'AdditionalDependencies': ['atls.lib'], 315 'AdditionalDependencies': ['atls.lib'],
312 }, 316 },
313 }, 317 },
314 }, 318 },
315 }, 319 },
316 }] 320 }]
317 } 321 }
OLDNEW
« no previous file with comments | « no previous file | src/plugin/PluginClass.h » ('j') | src/plugin/PluginClass.h » ('J')

Powered by Google App Engine
This is Rietveld