| OLD | NEW |
| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "sources": [ | 131 "sources": [ |
| 132 "Checkbox.js", | 132 "Checkbox.js", |
| 133 "ContextMenu.js", | 133 "ContextMenu.js", |
| 134 "CompletionDictionary.js", | 134 "CompletionDictionary.js", |
| 135 "DOMSyntaxHighlighter.js", | 135 "DOMSyntaxHighlighter.js", |
| 136 "DataGrid.js", | 136 "DataGrid.js", |
| 137 "Dialog.js", | 137 "Dialog.js", |
| 138 "DockController.js", | 138 "DockController.js", |
| 139 "Drawer.js", | 139 "Drawer.js", |
| 140 "EmptyView.js", | 140 "EmptyView.js", |
| 141 "FilterController.js", |
| 141 "GoToLineDialog.js", | 142 "GoToLineDialog.js", |
| 142 "HelpScreen.js", | 143 "HelpScreen.js", |
| 143 "InspectorView.js", | 144 "InspectorView.js", |
| 144 "KeyboardShortcut.js", | 145 "KeyboardShortcut.js", |
| 145 "OverviewGrid.js", | 146 "OverviewGrid.js", |
| 146 "Panel.js", | 147 "Panel.js", |
| 147 "Placard.js", | 148 "Placard.js", |
| 148 "Popover.js", | 149 "Popover.js", |
| 149 "ProgressIndicator.js", | 150 "ProgressIndicator.js", |
| 150 "PropertiesSection.js", | 151 "PropertiesSection.js", |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 os.system(command) | 524 os.system(command) |
| 524 os.system("rm " + injectedScriptSourceTmpFile) | 525 os.system("rm " + injectedScriptSourceTmpFile) |
| 525 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile) | 526 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile) |
| 526 | 527 |
| 527 print "Checking generated code in InjectedScriptCanvasModuleSource.js..." | 528 print "Checking generated code in InjectedScriptCanvasModuleSource.js..." |
| 528 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) | 529 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) |
| 529 os.system(check_injected_webgl_calls_command) | 530 os.system(check_injected_webgl_calls_command) |
| 530 | 531 |
| 531 shutil.rmtree(modules_dir) | 532 shutil.rmtree(modules_dir) |
| 532 os.system("rm " + protocol_externs_path) | 533 os.system("rm " + protocol_externs_path) |
| OLD | NEW |