| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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) |
| OLD | NEW |