OLD | NEW |
1 { | 1 { |
2 'conditions': [[ | 2 'conditions': [[ |
3 # We don't want to use curl on Windows, skip the check there | 3 # We don't want to use curl on Windows, skip the check there |
4 'OS=="win"', | 4 'OS=="win"', |
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': ['third_party/v8/build/common.gypi', | 16 'includes': ['third_party/v8/build/common.gypi', |
17 'shell/shell.gyp'], | 17 'shell/shell.gyp'], |
18 'targets': [{ | 18 'targets': [{ |
19 'target_name': 'libadblockplus', | 19 'target_name': 'libadblockplus', |
20 'type': '<(library)', | 20 'type': '<(library)', |
21 'include_dirs': [ | 21 'include_dirs': [ |
22 'include', | 22 'include', |
23 'third_party/v8/include' | 23 'third_party/v8/include' |
24 ], | 24 ], |
25 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 25 'dependencies': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
26 'sources': [ | 26 'sources': [ |
27 'src/AppInfoJsObject.cpp', | 27 'src/AppInfoJsObject.cpp', |
28 'src/ConsoleJsObject.cpp', | 28 'src/ConsoleJsObject.cpp', |
29 'src/DefaultErrorCallback.cpp', | 29 'src/DefaultLogSystem.cpp', |
30 'src/DefaultFileSystem.cpp', | 30 'src/DefaultFileSystem.cpp', |
31 'src/ErrorCallback.cpp', | |
32 'src/FileSystemJsObject.cpp', | 31 'src/FileSystemJsObject.cpp', |
33 'src/FilterEngine.cpp', | 32 'src/FilterEngine.cpp', |
34 'src/GlobalJsObject.cpp', | 33 'src/GlobalJsObject.cpp', |
35 'src/JsEngine.cpp', | 34 'src/JsEngine.cpp', |
36 'src/JsValue.cpp', | 35 'src/JsValue.cpp', |
37 'src/Thread.cpp', | 36 'src/Thread.cpp', |
38 'src/Utils.cpp', | 37 'src/Utils.cpp', |
39 'src/WebRequestJsObject.cpp', | 38 'src/WebRequestJsObject.cpp', |
40 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 39 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' |
41 ], | 40 ], |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 'test/WebRequest.cpp' | 142 'test/WebRequest.cpp' |
144 ], | 143 ], |
145 'msvs_settings': { | 144 'msvs_settings': { |
146 'VCLinkerTool': { | 145 'VCLinkerTool': { |
147 'SubSystem': '1', # Console | 146 'SubSystem': '1', # Console |
148 'EntryPointSymbol': 'mainCRTStartup', | 147 'EntryPointSymbol': 'mainCRTStartup', |
149 }, | 148 }, |
150 }, | 149 }, |
151 }] | 150 }] |
152 } | 151 } |
OLD | NEW |