Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1297)

Side by Side Diff: inspector/compile-front-end.py

Issue 13163002: Roll IDLs. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 Google Inc. All rights reserved. 2 # Copyright (c) 2012 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 ] 58 ]
59 }, 59 },
60 { 60 {
61 "name": "sdk", 61 "name": "sdk",
62 "dependencies": ["common"], 62 "dependencies": ["common"],
63 "sources": [ 63 "sources": [
64 "ApplicationCacheModel.js", 64 "ApplicationCacheModel.js",
65 "CompilerScriptMapping.js", 65 "CompilerScriptMapping.js",
66 "ConsoleModel.js", 66 "ConsoleModel.js",
67 "ContentProvider.js", 67 "ContentProvider.js",
68 "ContentProviderBasedProjectDelegate.js",
68 "ContentProviders.js", 69 "ContentProviders.js",
69 "CookieParser.js", 70 "CookieParser.js",
70 "CSSMetadata.js", 71 "CSSMetadata.js",
71 "CSSStyleModel.js", 72 "CSSStyleModel.js",
72 "BreakpointManager.js", 73 "BreakpointManager.js",
73 "Database.js", 74 "Database.js",
74 "DOMAgent.js", 75 "DOMAgent.js",
75 "DOMStorage.js", 76 "DOMStorage.js",
76 "DebuggerModel.js", 77 "DebuggerModel.js",
77 "DebuggerScriptMapping.js", 78 "DebuggerScriptMapping.js",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 "DataGrid.js", 128 "DataGrid.js",
128 "DefaultTextEditor.js", 129 "DefaultTextEditor.js",
129 "Dialog.js", 130 "Dialog.js",
130 "DockController.js", 131 "DockController.js",
131 "Drawer.js", 132 "Drawer.js",
132 "EmptyView.js", 133 "EmptyView.js",
133 "GoToLineDialog.js", 134 "GoToLineDialog.js",
134 "HelpScreen.js", 135 "HelpScreen.js",
135 "InspectorView.js", 136 "InspectorView.js",
136 "KeyboardShortcut.js", 137 "KeyboardShortcut.js",
138 "OverviewGrid.js",
137 "Panel.js", 139 "Panel.js",
138 "PanelEnablerView.js", 140 "PanelEnablerView.js",
139 "Placard.js", 141 "Placard.js",
140 "Popover.js", 142 "Popover.js",
141 "ProgressIndicator.js", 143 "ProgressIndicator.js",
142 "PropertiesSection.js", 144 "PropertiesSection.js",
143 "SearchController.js", 145 "SearchController.js",
144 "Section.js", 146 "Section.js",
145 "SidebarPane.js", 147 "SidebarPane.js",
146 "SidebarTreeElement.js", 148 "SidebarTreeElement.js",
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 command += " --externs " + inspector_path + "/" + "InjectedScriptExterns. js" + " \\\n" 440 command += " --externs " + inspector_path + "/" + "InjectedScriptExterns. js" + " \\\n"
439 command += " --externs " + protocol_externs_path + " \\\n" 441 command += " --externs " + protocol_externs_path + " \\\n"
440 command += " --module " + jsmodule_name_prefix + "injected_script" + ":" + "1" + " \\\n" 442 command += " --module " + jsmodule_name_prefix + "injected_script" + ":" + "1" + " \\\n"
441 command += " --js " + inspector_path + "/" + "InjectedScriptCanvasMod uleSourceTmp.js" + " \\\n" 443 command += " --js " + inspector_path + "/" + "InjectedScriptCanvasMod uleSourceTmp.js" + " \\\n"
442 command += "\n" 444 command += "\n"
443 os.system(command) 445 os.system(command)
444 os.system("rm " + inspector_path + "/" + "InjectedScriptCanvasModuleSourceTm p.js") 446 os.system("rm " + inspector_path + "/" + "InjectedScriptCanvasModuleSourceTm p.js")
445 447
446 shutil.rmtree(modules_dir) 448 shutil.rmtree(modules_dir)
447 #os.system("rm " + protocol_externs_path) 449 #os.system("rm " + protocol_externs_path)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698