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

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

Issue 13601015: Roll Blink IDLs forward. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: 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/InspectorFrontendHost.idl ('k') | page/DOMWindow.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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "AdvancedSearchController.js", 177 "AdvancedSearchController.js",
178 "HandlerRegistry.js", 178 "HandlerRegistry.js",
179 "ConsoleMessage.js", 179 "ConsoleMessage.js",
180 "CookiesTable.js", 180 "CookiesTable.js",
181 "DOMBreakpointsSidebarPane.js", 181 "DOMBreakpointsSidebarPane.js",
182 "DOMPresentationUtils.js", 182 "DOMPresentationUtils.js",
183 "ElementsTreeOutline.js", 183 "ElementsTreeOutline.js",
184 "FontView.js", 184 "FontView.js",
185 "ImageView.js", 185 "ImageView.js",
186 "NativeBreakpointsSidebarPane.js", 186 "NativeBreakpointsSidebarPane.js",
187 "InspectElementModeController.js",
187 "ObjectPopoverHelper.js", 188 "ObjectPopoverHelper.js",
188 "ObjectPropertiesSection.js", 189 "ObjectPropertiesSection.js",
189 "SourceFrame.js", 190 "SourceFrame.js",
190 "ResourceView.js", 191 "ResourceView.js",
191 ] 192 ]
192 }, 193 },
193 { 194 {
194 "name": "elements", 195 "name": "elements",
195 "dependencies": ["components"], 196 "dependencies": ["components"],
196 "sources": [ 197 "sources": [
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 command += " --externs " + inspector_path + "/" + "InjectedScriptExterns. js" + " \\\n" 441 command += " --externs " + inspector_path + "/" + "InjectedScriptExterns. js" + " \\\n"
441 command += " --externs " + protocol_externs_path + " \\\n" 442 command += " --externs " + protocol_externs_path + " \\\n"
442 command += " --module " + jsmodule_name_prefix + "injected_script" + ":" + "1" + " \\\n" 443 command += " --module " + jsmodule_name_prefix + "injected_script" + ":" + "1" + " \\\n"
443 command += " --js " + inspector_path + "/" + "InjectedScriptCanvasMod uleSourceTmp.js" + " \\\n" 444 command += " --js " + inspector_path + "/" + "InjectedScriptCanvasMod uleSourceTmp.js" + " \\\n"
444 command += "\n" 445 command += "\n"
445 os.system(command) 446 os.system(command)
446 os.system("rm " + inspector_path + "/" + "InjectedScriptCanvasModuleSourceTm p.js") 447 os.system("rm " + inspector_path + "/" + "InjectedScriptCanvasModuleSourceTm p.js")
447 448
448 shutil.rmtree(modules_dir) 449 shutil.rmtree(modules_dir)
449 #os.system("rm " + protocol_externs_path) 450 #os.system("rm " + protocol_externs_path)
OLDNEW
« no previous file with comments | « inspector/InspectorFrontendHost.idl ('k') | page/DOMWindow.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698