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 { |
(...skipping 13 matching lines...) Expand all Loading... |
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/DefaultLogSystem.cpp', | 29 'src/DefaultLogSystem.cpp', |
30 'src/DefaultFileSystem.cpp', | 30 'src/DefaultFileSystem.cpp', |
31 'src/FileSystemJsObject.cpp', | 31 'src/FileSystemJsObject.cpp', |
32 'src/FilterEngine.cpp', | 32 'src/FilterEngine.cpp', |
33 'src/GlobalJsObject.cpp', | 33 'src/GlobalJsObject.cpp', |
| 34 'src/JsContext.cpp', |
34 'src/JsEngine.cpp', | 35 'src/JsEngine.cpp', |
| 36 'src/JsError.cpp', |
35 'src/JsValue.cpp', | 37 'src/JsValue.cpp', |
36 'src/Thread.cpp', | 38 'src/Thread.cpp', |
37 'src/Utils.cpp', | 39 'src/Utils.cpp', |
38 'src/WebRequestJsObject.cpp', | 40 'src/WebRequestJsObject.cpp', |
39 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 41 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' |
40 ], | 42 ], |
41 'direct_dependent_settings': { | 43 'direct_dependent_settings': { |
42 'include_dirs': ['include'] | 44 'include_dirs': ['include'] |
43 }, | 45 }, |
44 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], | 46 'export_dependent_settings': ['third_party/v8/tools/gyp/v8.gyp:v8'], |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 'test/WebRequest.cpp' | 145 'test/WebRequest.cpp' |
144 ], | 146 ], |
145 'msvs_settings': { | 147 'msvs_settings': { |
146 'VCLinkerTool': { | 148 'VCLinkerTool': { |
147 'SubSystem': '1', # Console | 149 'SubSystem': '1', # Console |
148 'EntryPointSymbol': 'mainCRTStartup', | 150 'EntryPointSymbol': 'mainCRTStartup', |
149 }, | 151 }, |
150 }, | 152 }, |
151 }] | 153 }] |
152 } | 154 } |
OLD | NEW |