OLD | NEW |
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 { |
11 'variables': { | 11 'variables': { |
12 'have_curl': '<!(python check_curl.py)' | 12 'have_curl': '<!(python check_curl.py)' |
13 } | 13 } |
14 } | 14 } |
15 ]], | 15 ]], |
16 'includes': ['v8.gypi', 'shell/shell.gyp'], | 16 'includes': ['v8.gypi', 'shell/shell.gyp'], |
17 'targets': [{ | 17 'targets': [{ |
18 'target_name': 'libadblockplus', | 18 'target_name': 'libadblockplus', |
19 'type': '<(library)', | 19 'type': '<(library)', |
20 'dependencies': ['<@(libv8_build_targets)'], | 20 'dependencies': ['<@(libv8_build_targets)'], |
21 'xcode_settings':{}, | 21 'xcode_settings':{}, |
22 'include_dirs': [ | 22 'include_dirs': [ |
23 'include', | 23 'include', |
24 '<(libv8_include_dir)' | 24 '<(libv8_include_dir)' |
25 ], | 25 ], |
26 'sources': [ | 26 'sources': [ |
27 'include/AdblockPlus/ITimer.h', | 27 'include/AdblockPlus/ITimer.h', |
28 'include/AdblockPlus/IWebRequest.h', | 28 'include/AdblockPlus/IWebRequest.h', |
29 'include/AdblockPlus/IFileSystem.h', | 29 'include/AdblockPlus/IFileSystem.h', |
| 30 'include/AdblockPlus/Scheduler.h', |
30 'src/AppInfoJsObject.cpp', | 31 'src/AppInfoJsObject.cpp', |
31 'src/ConsoleJsObject.cpp', | 32 'src/ConsoleJsObject.cpp', |
32 'src/DefaultLogSystem.cpp', | 33 'src/DefaultLogSystem.cpp', |
33 'src/DefaultFileSystem.h', | 34 'src/DefaultFileSystem.h', |
34 'src/DefaultFileSystem.cpp', | 35 'src/DefaultFileSystem.cpp', |
35 'src/DefaultTimer.cpp', | 36 'src/DefaultTimer.cpp', |
36 'src/DefaultTimer.h', | 37 'src/DefaultTimer.h', |
37 'src/DefaultWebRequest.h', | 38 'src/DefaultWebRequest.h', |
38 'src/DefaultWebRequest.cpp', | 39 'src/DefaultWebRequest.cpp', |
39 'src/FileSystemJsObject.cpp', | 40 'src/FileSystemJsObject.cpp', |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 'test/WebRequest.cpp' | 202 'test/WebRequest.cpp' |
202 ], | 203 ], |
203 'msvs_settings': { | 204 'msvs_settings': { |
204 'VCLinkerTool': { | 205 'VCLinkerTool': { |
205 'SubSystem': '1', # Console | 206 'SubSystem': '1', # Console |
206 'EntryPointSymbol': 'mainCRTStartup', | 207 'EntryPointSymbol': 'mainCRTStartup', |
207 }, | 208 }, |
208 }, | 209 }, |
209 }] | 210 }] |
210 } | 211 } |
OLD | NEW |