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

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

Issue 104523002: [DevTools] Add power profiler and power overview in timeline panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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
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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "HAREntry.js", 91 "HAREntry.js",
92 "IndexedDBModel.js", 92 "IndexedDBModel.js",
93 "InspectorBackend.js", 93 "InspectorBackend.js",
94 "IsolatedFileSystemManager.js", 94 "IsolatedFileSystemManager.js",
95 "IsolatedFileSystem.js", 95 "IsolatedFileSystem.js",
96 "JavaScriptFormatter.js", 96 "JavaScriptFormatter.js",
97 "Linkifier.js", 97 "Linkifier.js",
98 "NetworkLog.js", 98 "NetworkLog.js",
99 "NetworkUISourceCodeProvider.js", 99 "NetworkUISourceCodeProvider.js",
100 "OverridesSupport.js", 100 "OverridesSupport.js",
101 "PowerProfiler.js",
101 "PresentationConsoleMessageHelper.js", 102 "PresentationConsoleMessageHelper.js",
102 "RuntimeModel.js", 103 "RuntimeModel.js",
103 "SASSSourceMapping.js", 104 "SASSSourceMapping.js",
104 "Script.js", 105 "Script.js",
105 "ScriptFormatter.js", 106 "ScriptFormatter.js",
106 "ScriptFormatterWorker.js", 107 "ScriptFormatterWorker.js",
107 "ScriptSnippetModel.js", 108 "ScriptSnippetModel.js",
108 "SimpleWorkspaceProvider.js", 109 "SimpleWorkspaceProvider.js",
109 "SnippetStorage.js", 110 "SnippetStorage.js",
110 "SourceMapping.js", 111 "SourceMapping.js",
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 os.system(command) 528 os.system(command)
528 os.system("rm " + injectedScriptSourceTmpFile) 529 os.system("rm " + injectedScriptSourceTmpFile)
529 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile) 530 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile)
530 531
531 print "Checking generated code in InjectedScriptCanvasModuleSource.js..." 532 print "Checking generated code in InjectedScriptCanvasModuleSource.js..."
532 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) 533 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)
533 os.system(check_injected_webgl_calls_command) 534 os.system(check_injected_webgl_calls_command)
534 535
535 shutil.rmtree(modules_dir) 536 shutil.rmtree(modules_dir)
536 os.system("rm " + protocol_externs_path) 537 os.system("rm " + protocol_externs_path)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698