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