OLD | NEW |
1 # The keys in sources are the paths to the directories | 1 # The keys in sources are the paths to the directories |
2 # the values are an array of source files in those directories to compile | 2 # the values are an array of source files in those directories to compile |
3 sources = {} | 3 sources = {} |
4 sources['css'] = [ | 4 sources['css'] = [ |
5 'css/CSSBorderImageValue.cpp', | 5 'css/CSSBorderImageValue.cpp', |
6 'css/CSSCanvasValue.cpp', | 6 'css/CSSCanvasValue.cpp', |
7 'css/CSSCharsetRule.cpp', | 7 'css/CSSCharsetRule.cpp', |
8 'css/CSSComputedStyleDeclaration.cpp', | 8 'css/CSSComputedStyleDeclaration.cpp', |
9 'css/CSSCursorImageValue.cpp', | 9 'css/CSSCursorImageValue.cpp', |
10 'css/CSSFontFace.cpp', | 10 'css/CSSFontFace.cpp', |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 'html/HTMLTitleElement.cpp', | 284 'html/HTMLTitleElement.cpp', |
285 'html/HTMLTokenizer.cpp', | 285 'html/HTMLTokenizer.cpp', |
286 'html/HTMLUListElement.cpp', | 286 'html/HTMLUListElement.cpp', |
287 'html/HTMLVideoElement.cpp', | 287 'html/HTMLVideoElement.cpp', |
288 'html/HTMLViewSourceDocument.cpp', | 288 'html/HTMLViewSourceDocument.cpp', |
289 'html/ImageData.cpp', | 289 'html/ImageData.cpp', |
290 'html/PreloadScanner.cpp', | 290 'html/PreloadScanner.cpp', |
291 'html/TimeRanges.cpp' | 291 'html/TimeRanges.cpp' |
292 ] | 292 ] |
293 sources['inspector'] = [ | 293 sources['inspector'] = [ |
| 294 'inspector/ConsoleMessage.cpp', |
| 295 'inspector/InspectorDatabaseResource.cpp', |
| 296 'inspector/InspectorDOMStorageResource.cpp', |
294 'inspector/InspectorController.cpp', | 297 'inspector/InspectorController.cpp', |
| 298 'inspector/InspectorResource.cpp', |
295 'inspector/JavaScriptCallFrame.cpp', | 299 'inspector/JavaScriptCallFrame.cpp', |
296 'inspector/JavaScriptDebugServer.cpp', | 300 'inspector/JavaScriptDebugServer.cpp', |
297 'inspector/JavaScriptProfile.cpp', | 301 'inspector/JavaScriptProfile.cpp', |
298 'inspector/JavaScriptProfileNode.cpp' | 302 'inspector/JavaScriptProfileNode.cpp' |
299 ] | 303 ] |
300 sources['loader/appcache'] = [ | 304 sources['loader/appcache'] = [ |
301 'loader/appcache/ApplicationCache.cpp', | 305 'loader/appcache/ApplicationCache.cpp', |
302 'loader/appcache/ApplicationCacheGroup.cpp', | 306 'loader/appcache/ApplicationCacheGroup.cpp', |
303 'loader/appcache/ApplicationCacheResource.cpp', | 307 'loader/appcache/ApplicationCacheResource.cpp', |
304 'loader/appcache/ApplicationCacheStorage.cpp', | 308 'loader/appcache/ApplicationCacheStorage.cpp', |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
971 | 975 |
972 if building_on_win32: | 976 if building_on_win32: |
973 env.Append(CPPPATH = ['os-win32', WebKitLibraries('include')]) | 977 env.Append(CPPPATH = ['os-win32', WebKitLibraries('include')]) |
974 env.Prepend(LIBPATH = [WebKitLibraries('lib')]) | 978 env.Prepend(LIBPATH = [WebKitLibraries('lib')]) |
975 env.Append(LIBS = ['icuin', 'icuuc', 'user32', 'winmm']) | 979 env.Append(LIBS = ['icuin', 'icuuc', 'user32', 'winmm']) |
976 | 980 |
977 # Include headers for all of the directories from which we are compiling source
files | 981 # Include headers for all of the directories from which we are compiling source
files |
978 env.Append(CPPPATH = sources.keys()) | 982 env.Append(CPPPATH = sources.keys()) |
979 | 983 |
980 env.SharedLibrary("WebCore", sources.values()) | 984 env.SharedLibrary("WebCore", sources.values()) |
OLD | NEW |