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 17 matching lines...) Expand all Loading... |
28 }, | 28 }, |
29 { | 29 { |
30 'target_name': 'libadblockplus', | 30 'target_name': 'libadblockplus', |
31 'type': '<(library)', | 31 'type': '<(library)', |
32 'dependencies': ['ensure_dependencies'], | 32 'dependencies': ['ensure_dependencies'], |
33 'include_dirs': [ | 33 'include_dirs': [ |
34 'include', | 34 'include', |
35 'third_party/v8/include', | 35 'third_party/v8/include', |
36 ], | 36 ], |
37 'sources': [ | 37 'sources': [ |
| 38 'include/AdblockPlus/ITimer.h', |
38 'src/AppInfoJsObject.cpp', | 39 'src/AppInfoJsObject.cpp', |
39 'src/ConsoleJsObject.cpp', | 40 'src/ConsoleJsObject.cpp', |
40 'src/DefaultLogSystem.cpp', | 41 'src/DefaultLogSystem.cpp', |
41 'src/DefaultFileSystem.cpp', | 42 'src/DefaultFileSystem.cpp', |
| 43 'src/DefaultTimer.cpp', |
| 44 'src/DefaultTimer.h', |
42 'src/FileSystemJsObject.cpp', | 45 'src/FileSystemJsObject.cpp', |
43 'src/FilterEngine.cpp', | 46 'src/FilterEngine.cpp', |
44 'src/GlobalJsObject.cpp', | 47 'src/GlobalJsObject.cpp', |
45 'src/JsContext.cpp', | 48 'src/JsContext.cpp', |
46 'src/JsEngine.cpp', | 49 'src/JsEngine.cpp', |
47 'src/JsError.cpp', | 50 'src/JsError.cpp', |
48 'src/JsValue.cpp', | 51 'src/JsValue.cpp', |
49 'src/Notification.cpp', | 52 'src/Notification.cpp', |
50 'src/ReferrerMapping.cpp', | 53 'src/ReferrerMapping.cpp', |
51 'src/Thread.cpp', | 54 'src/Thread.cpp', |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 'test/WebRequest.cpp' | 186 'test/WebRequest.cpp' |
184 ], | 187 ], |
185 'msvs_settings': { | 188 'msvs_settings': { |
186 'VCLinkerTool': { | 189 'VCLinkerTool': { |
187 'SubSystem': '1', # Console | 190 'SubSystem': '1', # Console |
188 'EntryPointSymbol': 'mainCRTStartup', | 191 'EntryPointSymbol': 'mainCRTStartup', |
189 }, | 192 }, |
190 }, | 193 }, |
191 }] | 194 }] |
192 } | 195 } |
OLD | NEW |