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)'], | |
21 'xcode_settings':{}, | 20 'xcode_settings':{}, |
22 'include_dirs': [ | 21 'include_dirs': [ |
23 'include', | 22 'include', |
24 '<(libv8_include_dir)' | 23 '<(libv8_include_dir)' |
25 ], | 24 ], |
26 'sources': [ | 25 'sources': [ |
27 'include/AdblockPlus/ActiveObject.h', | 26 'include/AdblockPlus/ActiveObject.h', |
28 'include/AdblockPlus/AsyncExecutor.h', | 27 'include/AdblockPlus/AsyncExecutor.h', |
29 'include/AdblockPlus/ITimer.h', | 28 'include/AdblockPlus/ITimer.h', |
30 'include/AdblockPlus/IWebRequest.h', | 29 'include/AdblockPlus/IWebRequest.h', |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 'test/WebRequest.cpp' | 210 'test/WebRequest.cpp' |
212 ], | 211 ], |
213 'msvs_settings': { | 212 'msvs_settings': { |
214 'VCLinkerTool': { | 213 'VCLinkerTool': { |
215 'SubSystem': '1', # Console | 214 'SubSystem': '1', # Console |
216 'EntryPointSymbol': 'mainCRTStartup', | 215 'EntryPointSymbol': 'mainCRTStartup', |
217 }, | 216 }, |
218 }, | 217 }, |
219 }] | 218 }] |
220 } | 219 } |
OLD | NEW |