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/DefaultWebRequest.h', | |
30 'include/AdblockPlus/IFileSystem.h', | 29 'include/AdblockPlus/IFileSystem.h', |
31 'include/AdblockPlus/DefaultFileSystem.h', | 30 'include/AdblockPlus/DefaultFileSystem.h', |
32 'src/AppInfoJsObject.cpp', | 31 'src/AppInfoJsObject.cpp', |
33 'src/ConsoleJsObject.cpp', | 32 'src/ConsoleJsObject.cpp', |
34 'src/DefaultLogSystem.cpp', | 33 'src/DefaultLogSystem.cpp', |
35 'src/DefaultFileSystem.cpp', | 34 'src/DefaultFileSystem.cpp', |
36 'src/DefaultTimer.cpp', | 35 'src/DefaultTimer.cpp', |
37 'src/DefaultTimer.h', | 36 'src/DefaultTimer.h', |
| 37 'src/DefaultWebRequest.h', |
38 'src/DefaultWebRequest.cpp', | 38 'src/DefaultWebRequest.cpp', |
39 'src/FileSystemJsObject.cpp', | 39 'src/FileSystemJsObject.cpp', |
40 'src/FilterEngine.cpp', | 40 'src/FilterEngine.cpp', |
41 'src/GlobalJsObject.cpp', | 41 'src/GlobalJsObject.cpp', |
42 'src/JsContext.cpp', | 42 'src/JsContext.cpp', |
43 'src/JsEngine.cpp', | 43 'src/JsEngine.cpp', |
44 'src/JsError.cpp', | 44 'src/JsError.cpp', |
45 'src/JsValue.cpp', | 45 'src/JsValue.cpp', |
46 'src/Notification.cpp', | 46 'src/Notification.cpp', |
47 'src/ReferrerMapping.cpp', | 47 'src/ReferrerMapping.cpp', |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 'test/WebRequest.cpp' | 202 'test/WebRequest.cpp' |
203 ], | 203 ], |
204 'msvs_settings': { | 204 'msvs_settings': { |
205 'VCLinkerTool': { | 205 'VCLinkerTool': { |
206 'SubSystem': '1', # Console | 206 'SubSystem': '1', # Console |
207 'EntryPointSymbol': 'mainCRTStartup', | 207 'EntryPointSymbol': 'mainCRTStartup', |
208 }, | 208 }, |
209 }, | 209 }, |
210 }] | 210 }] |
211 } | 211 } |
OLD | NEW |