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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 }] | 157 }] |
158 }, | 158 }, |
159 { | 159 { |
160 'target_name': 'tests', | 160 'target_name': 'tests', |
161 'type': 'executable', | 161 'type': 'executable', |
162 'dependencies': [ | 162 'dependencies': [ |
163 'third_party/googletest.gyp:googletest_main', | 163 'third_party/googletest.gyp:googletest_main', |
164 'libadblockplus' | 164 'libadblockplus' |
165 ], | 165 ], |
166 'sources': [ | 166 'sources': [ |
| 167 'test/BaseJsTest.h', |
| 168 'test/BaseJsTest.cpp', |
167 'test/AppInfoJsObject.cpp', | 169 'test/AppInfoJsObject.cpp', |
168 'test/ConsoleJsObject.cpp', | 170 'test/ConsoleJsObject.cpp', |
169 'test/DefaultFileSystem.cpp', | 171 'test/DefaultFileSystem.cpp', |
170 'test/FileSystemJsObject.cpp', | 172 'test/FileSystemJsObject.cpp', |
171 'test/FilterEngine.cpp', | 173 'test/FilterEngine.cpp', |
172 'test/GlobalJsObject.cpp', | 174 'test/GlobalJsObject.cpp', |
173 'test/JsEngine.cpp', | 175 'test/JsEngine.cpp', |
174 'test/JsValue.cpp', | 176 'test/JsValue.cpp', |
175 'test/Notification.cpp', | 177 'test/Notification.cpp', |
176 'test/Prefs.cpp', | 178 'test/Prefs.cpp', |
177 'test/ReferrerMapping.cpp', | 179 'test/ReferrerMapping.cpp', |
178 'test/Thread.cpp', | 180 'test/Thread.cpp', |
179 'test/UpdateCheck.cpp', | 181 'test/UpdateCheck.cpp', |
180 'test/WebRequest.cpp' | 182 'test/WebRequest.cpp' |
181 ], | 183 ], |
182 'msvs_settings': { | 184 'msvs_settings': { |
183 'VCLinkerTool': { | 185 'VCLinkerTool': { |
184 'SubSystem': '1', # Console | 186 'SubSystem': '1', # Console |
185 'EntryPointSymbol': 'mainCRTStartup', | 187 'EntryPointSymbol': 'mainCRTStartup', |
186 }, | 188 }, |
187 }, | 189 }, |
188 }] | 190 }] |
189 } | 191 } |
OLD | NEW |