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

Side by Side Diff: Source/devtools/scripts/compile_frontend.py

Issue 23011021: DevTools: introduce screencast experiment. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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 | « Source/devtools/protocol.json ('k') | no next file » | 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 "CookiesTable.js", 186 "CookiesTable.js",
187 "DOMBreakpointsSidebarPane.js", 187 "DOMBreakpointsSidebarPane.js",
188 "DOMPresentationUtils.js", 188 "DOMPresentationUtils.js",
189 "ElementsTreeOutline.js", 189 "ElementsTreeOutline.js",
190 "FontView.js", 190 "FontView.js",
191 "ImageView.js", 191 "ImageView.js",
192 "NativeBreakpointsSidebarPane.js", 192 "NativeBreakpointsSidebarPane.js",
193 "InspectElementModeController.js", 193 "InspectElementModeController.js",
194 "ObjectPopoverHelper.js", 194 "ObjectPopoverHelper.js",
195 "ObjectPropertiesSection.js", 195 "ObjectPropertiesSection.js",
196 "ScreencastView.js",
196 "SourceFrame.js", 197 "SourceFrame.js",
197 "ResourceView.js", 198 "ResourceView.js",
198 ] 199 ]
199 }, 200 },
200 { 201 {
201 "name": "elements", 202 "name": "elements",
202 "dependencies": ["components"], 203 "dependencies": ["components"],
203 "sources": [ 204 "sources": [
204 "CSSNamedFlowCollectionsView.js", 205 "CSSNamedFlowCollectionsView.js",
205 "CSSNamedFlowView.js", 206 "CSSNamedFlowView.js",
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 os.system(command) 478 os.system(command)
478 os.system("rm " + injectedScriptSourceTmpFile) 479 os.system("rm " + injectedScriptSourceTmpFile)
479 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile) 480 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile)
480 481
481 print "Checking generated code in InjectedScriptCanvasModuleSource.js..." 482 print "Checking generated code in InjectedScriptCanvasModuleSource.js..."
482 check_injected_webgl_calls_command = "%s/check_injected_webgl_calls_info.py %s %s/InjectedScriptCanvasModuleSource.js" % (scripts_path, webgl_rendering_cont ext_idl_path, inspector_path) 483 check_injected_webgl_calls_command = "%s/check_injected_webgl_calls_info.py %s %s/InjectedScriptCanvasModuleSource.js" % (scripts_path, webgl_rendering_cont ext_idl_path, inspector_path)
483 os.system(check_injected_webgl_calls_command) 484 os.system(check_injected_webgl_calls_command)
484 485
485 shutil.rmtree(modules_dir) 486 shutil.rmtree(modules_dir)
486 os.system("rm " + protocol_externs_path) 487 os.system("rm " + protocol_externs_path)
OLDNEW
« no previous file with comments | « Source/devtools/protocol.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698