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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "FileManager.js", | 84 "FileManager.js", |
85 "FileSystemMapping.js", | 85 "FileSystemMapping.js", |
86 "FileSystemModel.js", | 86 "FileSystemModel.js", |
87 "FileSystemProjectDelegate.js", | 87 "FileSystemProjectDelegate.js", |
88 "FileUtils.js", | 88 "FileUtils.js", |
89 "HAREntry.js", | 89 "HAREntry.js", |
90 "IndexedDBModel.js", | 90 "IndexedDBModel.js", |
91 "InspectorBackend.js", | 91 "InspectorBackend.js", |
92 "IsolatedFileSystemManager.js", | 92 "IsolatedFileSystemManager.js", |
93 "IsolatedFileSystem.js", | 93 "IsolatedFileSystem.js", |
| 94 "JumpHistoryManager.js", |
94 "Linkifier.js", | 95 "Linkifier.js", |
95 "NetworkLog.js", | 96 "NetworkLog.js", |
96 "NetworkUISourceCodeProvider.js", | 97 "NetworkUISourceCodeProvider.js", |
97 "OverridesSupport.js", | 98 "OverridesSupport.js", |
98 "PresentationConsoleMessageHelper.js", | 99 "PresentationConsoleMessageHelper.js", |
99 "RuntimeModel.js", | 100 "RuntimeModel.js", |
100 "SASSSourceMapping.js", | 101 "SASSSourceMapping.js", |
101 "Script.js", | 102 "Script.js", |
102 "ScriptFormatter.js", | 103 "ScriptFormatter.js", |
103 "ScriptSnippetModel.js", | 104 "ScriptSnippetModel.js", |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 os.system(command) | 518 os.system(command) |
518 os.system("rm " + injectedScriptSourceTmpFile) | 519 os.system("rm " + injectedScriptSourceTmpFile) |
519 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile) | 520 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile) |
520 | 521 |
521 print "Checking generated code in InjectedScriptCanvasModuleSource.js..." | 522 print "Checking generated code in InjectedScriptCanvasModuleSource.js..." |
522 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) | 523 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) |
523 os.system(check_injected_webgl_calls_command) | 524 os.system(check_injected_webgl_calls_command) |
524 | 525 |
525 shutil.rmtree(modules_dir) | 526 shutil.rmtree(modules_dir) |
526 os.system("rm " + protocol_externs_path) | 527 os.system("rm " + protocol_externs_path) |
OLD | NEW |