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 { |
(...skipping 16 matching lines...) Expand all Loading... |
27 'src/ConsoleJsObject.cpp', | 27 'src/ConsoleJsObject.cpp', |
28 'src/DefaultLogSystem.cpp', | 28 'src/DefaultLogSystem.cpp', |
29 'src/DefaultFileSystem.cpp', | 29 'src/DefaultFileSystem.cpp', |
30 'src/FileSystemJsObject.cpp', | 30 'src/FileSystemJsObject.cpp', |
31 'src/FilterEngine.cpp', | 31 'src/FilterEngine.cpp', |
32 'src/GlobalJsObject.cpp', | 32 'src/GlobalJsObject.cpp', |
33 'src/JsContext.cpp', | 33 'src/JsContext.cpp', |
34 'src/JsEngine.cpp', | 34 'src/JsEngine.cpp', |
35 'src/JsError.cpp', | 35 'src/JsError.cpp', |
36 'src/JsValue.cpp', | 36 'src/JsValue.cpp', |
| 37 'src/ReferrerMapping.cpp', |
37 'src/Thread.cpp', | 38 'src/Thread.cpp', |
38 'src/Utils.cpp', | 39 'src/Utils.cpp', |
39 'src/WebRequestJsObject.cpp', | 40 'src/WebRequestJsObject.cpp', |
40 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 41 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' |
41 ], | 42 ], |
42 'direct_dependent_settings': { | 43 'direct_dependent_settings': { |
43 'include_dirs': ['include'] | 44 'include_dirs': ['include'] |
44 }, | 45 }, |
45 'conditions': [ | 46 'conditions': [ |
46 ['OS=="android"', { | 47 ['OS=="android"', { |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 'sources': [ | 149 'sources': [ |
149 'test/AppInfoJsObject.cpp', | 150 'test/AppInfoJsObject.cpp', |
150 'test/ConsoleJsObject.cpp', | 151 'test/ConsoleJsObject.cpp', |
151 'test/DefaultFileSystem.cpp', | 152 'test/DefaultFileSystem.cpp', |
152 'test/FileSystemJsObject.cpp', | 153 'test/FileSystemJsObject.cpp', |
153 'test/FilterEngine.cpp', | 154 'test/FilterEngine.cpp', |
154 'test/GlobalJsObject.cpp', | 155 'test/GlobalJsObject.cpp', |
155 'test/JsEngine.cpp', | 156 'test/JsEngine.cpp', |
156 'test/JsValue.cpp', | 157 'test/JsValue.cpp', |
157 'test/Prefs.cpp', | 158 'test/Prefs.cpp', |
| 159 'test/ReferrerMapping.cpp', |
158 'test/Thread.cpp', | 160 'test/Thread.cpp', |
159 'test/UpdateCheck.cpp', | 161 'test/UpdateCheck.cpp', |
160 'test/WebRequest.cpp' | 162 'test/WebRequest.cpp' |
161 ], | 163 ], |
162 'msvs_settings': { | 164 'msvs_settings': { |
163 'VCLinkerTool': { | 165 'VCLinkerTool': { |
164 'SubSystem': '1', # Console | 166 'SubSystem': '1', # Console |
165 'EntryPointSymbol': 'mainCRTStartup', | 167 'EntryPointSymbol': 'mainCRTStartup', |
166 }, | 168 }, |
167 }, | 169 }, |
168 'xcode_settings': { | 170 'xcode_settings': { |
169 'OTHER_LDFLAGS': ['-stdlib=libstdc++'], | 171 'OTHER_LDFLAGS': ['-stdlib=libstdc++'], |
170 }, | 172 }, |
171 }] | 173 }] |
172 } | 174 } |
OLD | NEW |