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 '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/JsContext.cpp', |
35 'src/JsEngine.cpp', | 35 'src/JsEngine.cpp', |
36 'src/JsError.cpp', | 36 'src/JsError.cpp', |
37 'src/JsValue.cpp', | 37 'src/JsValue.cpp', |
| 38 'src/Notification.cpp', |
38 'src/ReferrerMapping.cpp', | 39 'src/ReferrerMapping.cpp', |
39 'src/Thread.cpp', | 40 'src/Thread.cpp', |
40 'src/Utils.cpp', | 41 'src/Utils.cpp', |
41 'src/WebRequestJsObject.cpp', | 42 'src/WebRequestJsObject.cpp', |
42 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 43 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' |
43 ], | 44 ], |
44 'direct_dependent_settings': { | 45 'direct_dependent_settings': { |
45 'include_dirs': ['include'] | 46 'include_dirs': ['include'] |
46 }, | 47 }, |
47 'conditions': [ | 48 'conditions': [ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 'lib/elemHideHitRegistration.js', | 100 'lib/elemHideHitRegistration.js', |
100 'adblockplus/lib/filterNotifier.js', | 101 'adblockplus/lib/filterNotifier.js', |
101 'lib/init.js', | 102 'lib/init.js', |
102 'adblockplus/lib/filterClasses.js', | 103 'adblockplus/lib/filterClasses.js', |
103 'adblockplus/lib/subscriptionClasses.js', | 104 'adblockplus/lib/subscriptionClasses.js', |
104 'adblockplus/lib/filterStorage.js', | 105 'adblockplus/lib/filterStorage.js', |
105 'adblockplus/lib/elemHide.js', | 106 'adblockplus/lib/elemHide.js', |
106 'adblockplus/lib/matcher.js', | 107 'adblockplus/lib/matcher.js', |
107 'adblockplus/lib/filterListener.js', | 108 'adblockplus/lib/filterListener.js', |
108 'adblockplus/lib/downloader.js', | 109 'adblockplus/lib/downloader.js', |
| 110 'adblockplus/lib/notification.js', |
109 'adblockplus/lib/synchronizer.js', | 111 'adblockplus/lib/synchronizer.js', |
110 'lib/filterUpdateRegistration.js', | 112 'lib/filterUpdateRegistration.js', |
111 'adblockplus/chrome/content/ui/subscriptions.xml', | 113 'adblockplus/chrome/content/ui/subscriptions.xml', |
112 'lib/updater.js', | 114 'lib/updater.js', |
113 ], | 115 ], |
114 'load_before_files': [ | 116 'load_before_files': [ |
115 'lib/compat.js' | 117 'lib/compat.js' |
116 ], | 118 ], |
117 'load_after_files': [ | 119 'load_after_files': [ |
118 'lib/api.js', | 120 'lib/api.js', |
(...skipping 30 matching lines...) Expand all Loading... |
149 ], | 151 ], |
150 'sources': [ | 152 'sources': [ |
151 'test/AppInfoJsObject.cpp', | 153 'test/AppInfoJsObject.cpp', |
152 'test/ConsoleJsObject.cpp', | 154 'test/ConsoleJsObject.cpp', |
153 'test/DefaultFileSystem.cpp', | 155 'test/DefaultFileSystem.cpp', |
154 'test/FileSystemJsObject.cpp', | 156 'test/FileSystemJsObject.cpp', |
155 'test/FilterEngine.cpp', | 157 'test/FilterEngine.cpp', |
156 'test/GlobalJsObject.cpp', | 158 'test/GlobalJsObject.cpp', |
157 'test/JsEngine.cpp', | 159 'test/JsEngine.cpp', |
158 'test/JsValue.cpp', | 160 'test/JsValue.cpp', |
| 161 'test/Notification.cpp', |
159 'test/Prefs.cpp', | 162 'test/Prefs.cpp', |
160 'test/ReferrerMapping.cpp', | 163 'test/ReferrerMapping.cpp', |
161 'test/Thread.cpp', | 164 'test/Thread.cpp', |
162 'test/UpdateCheck.cpp', | 165 'test/UpdateCheck.cpp', |
163 'test/WebRequest.cpp' | 166 'test/WebRequest.cpp' |
164 ], | 167 ], |
165 'msvs_settings': { | 168 'msvs_settings': { |
166 'VCLinkerTool': { | 169 'VCLinkerTool': { |
167 'SubSystem': '1', # Console | 170 'SubSystem': '1', # Console |
168 'EntryPointSymbol': 'mainCRTStartup', | 171 'EntryPointSymbol': 'mainCRTStartup', |
169 }, | 172 }, |
170 }, | 173 }, |
171 'xcode_settings': { | 174 'xcode_settings': { |
172 'OTHER_LDFLAGS': ['-stdlib=libstdc++'], | 175 'OTHER_LDFLAGS': ['-stdlib=libstdc++'], |
173 }, | 176 }, |
174 }] | 177 }] |
175 } | 178 } |
OLD | NEW |