LEFT | RIGHT |
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 'src/shared/AutoHandle.cpp', | 43 'src/shared/AutoHandle.cpp', |
44 'src/shared/AutoHandle.h', | 44 'src/shared/AutoHandle.h', |
45 'src/shared/Communication.cpp', | 45 'src/shared/Communication.cpp', |
46 'src/shared/Communication.h', | 46 'src/shared/Communication.h', |
47 'src/shared/CriticalSection.h', | 47 'src/shared/CriticalSection.h', |
48 'src/shared/Dictionary.cpp', | 48 'src/shared/Dictionary.cpp', |
49 'src/shared/Dictionary.h', | 49 'src/shared/Dictionary.h', |
50 'src/shared/Utils.cpp', | 50 'src/shared/Utils.cpp', |
51 'src/shared/Utils.h', | 51 'src/shared/Utils.h', |
52 'src/shared/Version.h', | 52 'src/shared/Version.h', |
| 53 'src/shared/MsHTMLUtils.cpp', |
| 54 'src/shared/MsHTMLUtils.h', |
53 ] | 55 ] |
54 }, | 56 }, |
55 | 57 |
56 { | 58 { |
57 'target_name': 'AdblockPlusEngine', | 59 'target_name': 'AdblockPlusEngine', |
58 'type': 'executable', | 60 'type': 'executable', |
59 'dependencies': [ | 61 'dependencies': [ |
60 'shared', | 62 'shared', |
61 'libadblockplus/libadblockplus.gyp:libadblockplus', | 63 'libadblockplus/libadblockplus.gyp:libadblockplus', |
62 ], | 64 ], |
63 'sources': [ | 65 'sources': [ |
64 'src/engine/Main.cpp', | 66 'src/engine/Main.cpp', |
| 67 'src/engine/NotificationWindow.cpp', |
| 68 'src/engine/NotificationWindow.h', |
65 'src/engine/Debug.cpp', | 69 'src/engine/Debug.cpp', |
66 'src/engine/UpdateInstallDialog.cpp', | 70 'src/engine/UpdateInstallDialog.cpp', |
67 'src/engine/Updater.cpp', | 71 'src/engine/Updater.cpp', |
68 'src/engine/engine.rc', | 72 'src/engine/engine.rc', |
69 ], | 73 ], |
70 'libraries': [ | 74 'libraries': [ |
71 '-ladvapi32', | 75 '-ladvapi32', |
72 '-lole32', | 76 '-lole32', |
73 '-luser32', | 77 '-luser32', |
74 '-lshell32', | 78 '-lshell32', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 'src/plugin/PluginSystem.cpp', | 134 'src/plugin/PluginSystem.cpp', |
131 'src/plugin/PluginSystem.h', | 135 'src/plugin/PluginSystem.h', |
132 'src/plugin/PluginTabBase.cpp', | 136 'src/plugin/PluginTabBase.cpp', |
133 'src/plugin/PluginTabBase.h', | 137 'src/plugin/PluginTabBase.h', |
134 'src/plugin/PluginUserSettings.cpp', | 138 'src/plugin/PluginUserSettings.cpp', |
135 'src/plugin/PluginUserSettings.h', | 139 'src/plugin/PluginUserSettings.h', |
136 'src/plugin/PluginUtil.cpp', | 140 'src/plugin/PluginUtil.cpp', |
137 'src/plugin/PluginUtil.h', | 141 'src/plugin/PluginUtil.h', |
138 'src/plugin/PluginWbPassThrough.cpp', | 142 'src/plugin/PluginWbPassThrough.cpp', |
139 'src/plugin/PluginWbPassThrough.h', | 143 'src/plugin/PluginWbPassThrough.h', |
140 'src/plugin/ProtocolCF.h', | |
141 'src/plugin/ProtocolCF.inl', | |
142 'src/plugin/ProtocolImpl.h', | |
143 'src/plugin/ProtocolImpl.inl', | |
144 'src/plugin/Resource.h', | 144 'src/plugin/Resource.h', |
145 'src/plugin/SinkPolicy.h', | 145 'src/plugin/passthroughapp/ProtocolCF.h', |
146 'src/plugin/SinkPolicy.inl', | 146 'src/plugin/passthroughapp/ProtocolCF.inl', |
| 147 'src/plugin/passthroughapp/ProtocolImpl.h', |
| 148 'src/plugin/passthroughapp/ProtocolImpl.inl', |
| 149 'src/plugin/passthroughapp/SinkPolicy.h', |
| 150 'src/plugin/passthroughapp/SinkPolicy.inl', |
147 ], | 151 ], |
148 'include_dirs': [ | 152 'include_dirs': [ |
149 '$(WindowsSDK_IncludePath)', | 153 '$(WindowsSDK_IncludePath)', |
150 '$(VCInstallDir)atlmfc/include', | 154 '$(VCInstallDir)atlmfc/include', |
151 '$(WINDDKDIR)/inc/atl71', | 155 '$(WINDDKDIR)/inc/atl71', |
152 ], | 156 ], |
153 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or
a DLL | 157 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or
a DLL |
154 # That Is Brought into a Process" on the link here: | 158 # That Is Brought into a Process" on the link here: |
155 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85
%29.aspx#using_manifests | 159 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85
%29.aspx#using_manifests |
156 'defines': ['ISOLATION_AWARE_ENABLED'], | 160 'defines': ['ISOLATION_AWARE_ENABLED'], |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 'type': 'executable', | 234 'type': 'executable', |
231 'dependencies': [ | 235 'dependencies': [ |
232 'shared', | 236 'shared', |
233 'libadblockplus/libadblockplus.gyp:libadblockplus', | 237 'libadblockplus/libadblockplus.gyp:libadblockplus', |
234 'libadblockplus/third_party/googletest.gyp:googletest_main', | 238 'libadblockplus/third_party/googletest.gyp:googletest_main', |
235 ], | 239 ], |
236 'sources': [ | 240 'sources': [ |
237 'src/plugin/PluginUserSettings.cpp', | 241 'src/plugin/PluginUserSettings.cpp', |
238 'src/plugin/PluginUserSettings.h', | 242 'src/plugin/PluginUserSettings.h', |
239 'test/plugin/UserSettingsTest.cpp', | 243 'test/plugin/UserSettingsTest.cpp', |
| 244 'src/plugin/PluginUtil.h', |
| 245 'test/plugin/UtilTest.cpp', |
240 # | 246 # |
241 # required only for linking | 247 # required only for linking |
242 # | 248 # |
243 'src/plugin/AdblockPlusClient.cpp', | 249 'src/plugin/AdblockPlusClient.cpp', |
244 'src/plugin/AdblockPlusDomTraverser.cpp', | 250 'src/plugin/AdblockPlusDomTraverser.cpp', |
245 'src/plugin/ATL_Deprecate.cpp', | 251 'src/plugin/ATL_Deprecate.cpp', |
246 'src/plugin/NotificationMessage.cpp', | 252 'src/plugin/NotificationMessage.cpp', |
247 'src/plugin/Plugin.cpp', | 253 'src/plugin/Plugin.cpp', |
248 'src/plugin/PluginClientBase.cpp', | 254 'src/plugin/PluginClientBase.cpp', |
249 'src/plugin/PluginClientFactory.cpp', | 255 'src/plugin/PluginClientFactory.cpp', |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 'Release': { | 307 'Release': { |
302 'msvs_settings': { | 308 'msvs_settings': { |
303 'VCLinkerTool': { | 309 'VCLinkerTool': { |
304 'AdditionalDependencies': ['atls.lib'], | 310 'AdditionalDependencies': ['atls.lib'], |
305 }, | 311 }, |
306 }, | 312 }, |
307 }, | 313 }, |
308 }, | 314 }, |
309 }] | 315 }] |
310 } | 316 } |
LEFT | RIGHT |