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

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

Issue 14107003: Update WebKit IDLs after chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: reupload again. Created 7 years, 8 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
« no previous file with comments | « inspector/Inspector.json ('k') | loader/appcache/DOMApplicationCache.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 "Dialog.js", 130 "Dialog.js",
131 "DockController.js", 131 "DockController.js",
132 "Drawer.js", 132 "Drawer.js",
133 "EmptyView.js", 133 "EmptyView.js",
134 "GoToLineDialog.js", 134 "GoToLineDialog.js",
135 "HelpScreen.js", 135 "HelpScreen.js",
136 "InspectorView.js", 136 "InspectorView.js",
137 "KeyboardShortcut.js", 137 "KeyboardShortcut.js",
138 "OverviewGrid.js", 138 "OverviewGrid.js",
139 "Panel.js", 139 "Panel.js",
140 "PanelEnablerView.js",
141 "Placard.js", 140 "Placard.js",
142 "Popover.js", 141 "Popover.js",
143 "ProgressIndicator.js", 142 "ProgressIndicator.js",
144 "PropertiesSection.js", 143 "PropertiesSection.js",
145 "SearchController.js", 144 "SearchController.js",
146 "Section.js", 145 "Section.js",
147 "SidebarPane.js", 146 "SidebarPane.js",
148 "SidebarTreeElement.js", 147 "SidebarTreeElement.js",
149 "ShortcutsScreen.js", 148 "ShortcutsScreen.js",
150 "ShowMoreDataGridNode.js", 149 "ShowMoreDataGridNode.js",
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 command += " --externs " + inspector_path + "/" + "InjectedScriptExterns. js" + " \\\n" 440 command += " --externs " + inspector_path + "/" + "InjectedScriptExterns. js" + " \\\n"
442 command += " --externs " + protocol_externs_path + " \\\n" 441 command += " --externs " + protocol_externs_path + " \\\n"
443 command += " --module " + jsmodule_name_prefix + "injected_script" + ":" + "1" + " \\\n" 442 command += " --module " + jsmodule_name_prefix + "injected_script" + ":" + "1" + " \\\n"
444 command += " --js " + inspector_path + "/" + "InjectedScriptCanvasMod uleSourceTmp.js" + " \\\n" 443 command += " --js " + inspector_path + "/" + "InjectedScriptCanvasMod uleSourceTmp.js" + " \\\n"
445 command += "\n" 444 command += "\n"
446 os.system(command) 445 os.system(command)
447 os.system("rm " + inspector_path + "/" + "InjectedScriptCanvasModuleSourceTm p.js") 446 os.system("rm " + inspector_path + "/" + "InjectedScriptCanvasModuleSourceTm p.js")
448 447
449 shutil.rmtree(modules_dir) 448 shutil.rmtree(modules_dir)
450 #os.system("rm " + protocol_externs_path) 449 #os.system("rm " + protocol_externs_path)
OLDNEW
« no previous file with comments | « inspector/Inspector.json ('k') | loader/appcache/DOMApplicationCache.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698