| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 "TimelinePanelDescriptor.js", | 288 "TimelinePanelDescriptor.js", |
| 289 "TimelinePresentationModel.js", | 289 "TimelinePresentationModel.js", |
| 290 "TimelineFrameController.js" | 290 "TimelineFrameController.js" |
| 291 ] | 291 ] |
| 292 }, | 292 }, |
| 293 { | 293 { |
| 294 "name": "audits", | 294 "name": "audits", |
| 295 "dependencies": ["components"], | 295 "dependencies": ["components"], |
| 296 "sources": [ | 296 "sources": [ |
| 297 "AuditCategories.js", | 297 "AuditCategories.js", |
| 298 "AuditController.js", |
| 298 "AuditFormatters.js", | 299 "AuditFormatters.js", |
| 299 "AuditLauncherView.js", | 300 "AuditLauncherView.js", |
| 300 "AuditResultView.js", | 301 "AuditResultView.js", |
| 301 "AuditRules.js", | 302 "AuditRules.js", |
| 302 "AuditsPanel.js", | 303 "AuditsPanel.js", |
| 303 ] | 304 ] |
| 304 }, | 305 }, |
| 305 { | 306 { |
| 306 "name": "extensions", | 307 "name": "extensions", |
| 307 "dependencies": ["components"], | 308 "dependencies": ["components"], |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 command += " --externs " + inspector_path + "/" + "InjectedScriptExterns.
js" + " \\\n" | 437 command += " --externs " + inspector_path + "/" + "InjectedScriptExterns.
js" + " \\\n" |
| 437 command += " --externs " + protocol_externs_path + " \\\n" | 438 command += " --externs " + protocol_externs_path + " \\\n" |
| 438 command += " --module " + jsmodule_name_prefix + "injected_script" + ":"
+ "1" + " \\\n" | 439 command += " --module " + jsmodule_name_prefix + "injected_script" + ":"
+ "1" + " \\\n" |
| 439 command += " --js " + inspector_path + "/" + "InjectedScriptCanvasMod
uleSourceTmp.js" + " \\\n" | 440 command += " --js " + inspector_path + "/" + "InjectedScriptCanvasMod
uleSourceTmp.js" + " \\\n" |
| 440 command += "\n" | 441 command += "\n" |
| 441 os.system(command) | 442 os.system(command) |
| 442 os.system("rm " + inspector_path + "/" + "InjectedScriptCanvasModuleSourceTm
p.js") | 443 os.system("rm " + inspector_path + "/" + "InjectedScriptCanvasModuleSourceTm
p.js") |
| 443 | 444 |
| 444 shutil.rmtree(modules_dir) | 445 shutil.rmtree(modules_dir) |
| 445 #os.system("rm " + protocol_externs_path) | 446 #os.system("rm " + protocol_externs_path) |
| OLD | NEW |