LEFT | RIGHT |
1 { | 1 { |
2 'conditions': [[ | 2 'conditions': [[ |
3 # We don't want to use curl on Windows and Android, skip the check there | 3 # We don't want to use curl on Windows and Android, skip the check there |
4 'OS=="win" or OS=="android"', | 4 'OS=="win" or OS=="android"', |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'have_curl': 0 | 7 'have_curl': 0 |
8 } | 8 } |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 19 matching lines...) Expand all Loading... |
30 'build/<(target_arch)/v8/build/<(CONFIGURATION_NAME)/v8_libbase.lib'
, | 30 'build/<(target_arch)/v8/build/<(CONFIGURATION_NAME)/v8_libbase.lib'
, |
31 'build/<(target_arch)/v8/build/<(CONFIGURATION_NAME)/v8_libsampler.l
ib', | 31 'build/<(target_arch)/v8/build/<(CONFIGURATION_NAME)/v8_libsampler.l
ib', |
32 'build/<(target_arch)/v8/build/<(CONFIGURATION_NAME)/v8_snapshot.lib
', | 32 'build/<(target_arch)/v8/build/<(CONFIGURATION_NAME)/v8_snapshot.lib
', |
33 ], | 33 ], |
34 'action': [ | 34 'action': [ |
35 'cmd', | 35 'cmd', |
36 '/C', | 36 '/C', |
37 'build-v8.cmd', | 37 'build-v8.cmd', |
38 '$(MSBuildBinPath)', | 38 '$(MSBuildBinPath)', |
39 '<(target_arch)', | 39 '<(target_arch)', |
40 '<(CONFIGURATION_NAME)' | 40 '<(CONFIGURATION_NAME)', |
| 41 '$(PlatformToolset)' |
41 ] | 42 ] |
42 }], | 43 }], |
43 }] | 44 }] |
44 } | 45 } |
45 ]], | 46 ]], |
46 'includes': ['shell/shell.gyp'], | 47 'includes': ['shell/shell.gyp'], |
47 'targets': [{ | 48 'targets': [{ |
48 'target_name': 'libadblockplus', | 49 'target_name': 'libadblockplus', |
49 'type': '<(library)', | 50 'type': '<(library)', |
50 'xcode_settings':{}, | 51 'xcode_settings':{}, |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 '--convert', '<@(library_files)', | 213 '--convert', '<@(library_files)', |
213 '--after', '<@(load_after_files)', | 214 '--after', '<@(load_after_files)', |
214 ] | 215 ] |
215 }] | 216 }] |
216 }, | 217 }, |
217 { | 218 { |
218 'target_name': 'tests', | 219 'target_name': 'tests', |
219 'type': 'executable', | 220 'type': 'executable', |
220 'xcode_settings': {}, | 221 'xcode_settings': {}, |
221 'dependencies': [ | 222 'dependencies': [ |
222 'third_party/googletest.gyp:googletest_main', | 223 'googletest.gyp:googletest_main', |
223 'libadblockplus' | 224 'libadblockplus' |
224 ], | 225 ], |
225 'sources': [ | 226 'sources': [ |
226 'test/BaseJsTest.h', | 227 'test/BaseJsTest.h', |
227 'test/BaseJsTest.cpp', | 228 'test/BaseJsTest.cpp', |
228 'test/AppInfoJsObject.cpp', | 229 'test/AppInfoJsObject.cpp', |
229 'test/ConsoleJsObject.cpp', | 230 'test/ConsoleJsObject.cpp', |
230 'test/DefaultFileSystem.cpp', | 231 'test/DefaultFileSystem.cpp', |
231 'test/FileSystemJsObject.cpp', | 232 'test/FileSystemJsObject.cpp', |
232 'test/FilterEngine.cpp', | 233 'test/FilterEngine.cpp', |
233 'test/GlobalJsObject.cpp', | 234 'test/GlobalJsObject.cpp', |
234 'test/JsEngine.cpp', | 235 'test/JsEngine.cpp', |
235 'test/JsValue.cpp', | 236 'test/JsValue.cpp', |
236 'test/Notification.cpp', | 237 'test/Notification.cpp', |
237 'test/Prefs.cpp', | 238 'test/Prefs.cpp', |
238 'test/ReferrerMapping.cpp', | 239 'test/ReferrerMapping.cpp', |
239 'test/Thread.cpp', | 240 'test/Thread.cpp', |
240 'test/UpdateCheck.cpp', | 241 'test/UpdateCheck.cpp', |
241 'test/WebRequest.cpp' | 242 'test/WebRequest.cpp' |
242 ], | 243 ], |
243 'msvs_settings': { | 244 'msvs_settings': { |
244 'VCLinkerTool': { | 245 'VCLinkerTool': { |
245 'SubSystem': '1', # Console | 246 'SubSystem': '1', # Console |
246 'EntryPointSymbol': 'mainCRTStartup', | 247 'EntryPointSymbol': 'mainCRTStartup', |
247 }, | 248 }, |
248 }, | 249 }, |
249 }] | 250 }] |
250 } | 251 } |
LEFT | RIGHT |