OLD | NEW |
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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 ], | 207 ], |
208 'sources': [ | 208 'sources': [ |
209 'test/CommunicationTest.cpp', | 209 'test/CommunicationTest.cpp', |
210 'test/DictionaryTest.cpp', | 210 'test/DictionaryTest.cpp', |
211 'test/UtilTest.cpp', | 211 'test/UtilTest.cpp', |
212 'test/UtilGetQueryStringTest.cpp', | 212 'test/UtilGetQueryStringTest.cpp', |
213 'test/UtilGetSchemeAndHierarchicalPartTest.cpp', | 213 'test/UtilGetSchemeAndHierarchicalPartTest.cpp', |
214 ], | 214 ], |
215 'defines': ['WINVER=0x0501'], | 215 'defines': ['WINVER=0x0501'], |
216 'link_settings': { | 216 'link_settings': { |
217 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 217 'libraries': ['-ladvapi32', '-lshell32', '-lole32', '-loleaut32'], |
218 }, | 218 }, |
219 'msvs_settings': { | 219 'msvs_settings': { |
220 'VCLinkerTool': { | 220 'VCLinkerTool': { |
221 'SubSystem': '1', # Console | 221 'SubSystem': '1', # Console |
222 'EntryPointSymbol': 'mainCRTStartup', | 222 'EntryPointSymbol': 'mainCRTStartup', |
223 }, | 223 }, |
224 }, | 224 }, |
225 }, | 225 }, |
226 | 226 |
227 { | 227 { |
228 'target_name': 'tests_plugin', | 228 'target_name': 'tests_plugin', |
229 'type': 'executable', | 229 'type': 'executable', |
230 'dependencies': [ | 230 'dependencies': [ |
231 'shared', | 231 'shared', |
232 'libadblockplus/libadblockplus.gyp:libadblockplus', | 232 'libadblockplus/libadblockplus.gyp:libadblockplus', |
233 'libadblockplus/third_party/googletest.gyp:googletest_main', | 233 'libadblockplus/third_party/googletest.gyp:googletest_main', |
234 ], | 234 ], |
235 'sources': [ | 235 'sources': [ |
236 'src/plugin/PluginUserSettings.cpp', | 236 'src/plugin/PluginUserSettings.cpp', |
237 'src/plugin/PluginUserSettings.h', | 237 'src/plugin/PluginUserSettings.h', |
238 'test/plugin/UserSettingsTest.cpp', | 238 'test/plugin/UserSettingsTest.cpp', |
239 'src/plugin/PluginUtil.h', | 239 'src/plugin/PluginUtil.h', |
240 'test/plugin/UtilTest.cpp', | 240 'test/plugin/UtilTest.cpp', |
| 241 'src/plugin/TokenSequence.h', |
| 242 'test/plugin/TokenSequenceTest.cpp', |
241 # | 243 # |
242 # required only for linking | 244 # required only for linking |
243 # | 245 # |
244 'src/plugin/AdblockPlusClient.cpp', | 246 'src/plugin/AdblockPlusClient.cpp', |
245 'src/plugin/AdblockPlusDomTraverser.cpp', | 247 'src/plugin/AdblockPlusDomTraverser.cpp', |
246 'src/plugin/ATL_Deprecate.cpp', | 248 'src/plugin/ATL_Deprecate.cpp', |
247 'src/plugin/NotificationMessage.cpp', | 249 'src/plugin/NotificationMessage.cpp', |
248 'src/plugin/Plugin.cpp', | 250 'src/plugin/Plugin.cpp', |
249 'src/plugin/PluginClientBase.cpp', | 251 'src/plugin/PluginClientBase.cpp', |
250 'src/plugin/PluginClientFactory.cpp', | 252 'src/plugin/PluginClientFactory.cpp', |
(...skipping 30 matching lines...) Expand all Loading... |
281 }, { | 283 }, { |
282 'AdditionalLibraryDirectories': [ | 284 'AdditionalLibraryDirectories': [ |
283 '$(ADBLOCKPLUS_ATL)/lib/amd64', | 285 '$(ADBLOCKPLUS_ATL)/lib/amd64', |
284 ], | 286 ], |
285 } | 287 } |
286 ]], | 288 ]], |
287 }, | 289 }, |
288 }, | 290 }, |
289 }] | 291 }] |
290 } | 292 } |
OLD | NEW |