| 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 "sources": [ | 336 "sources": [ |
| 337 "TestController.js", | 337 "TestController.js", |
| 338 ] | 338 ] |
| 339 }, | 339 }, |
| 340 { | 340 { |
| 341 "name": "profiler", | 341 "name": "profiler", |
| 342 "dependencies": ["components", "workers"], | 342 "dependencies": ["components", "workers"], |
| 343 "sources": [ | 343 "sources": [ |
| 344 "BottomUpProfileDataGridTree.js", | 344 "BottomUpProfileDataGridTree.js", |
| 345 "CPUProfileView.js", | 345 "CPUProfileView.js", |
| 346 "CSSSelectorProfileView.js", | |
| 347 "FlameChart.js", | 346 "FlameChart.js", |
| 348 "HeapSnapshot.js", | 347 "HeapSnapshot.js", |
| 349 "HeapSnapshotDataGrids.js", | 348 "HeapSnapshotDataGrids.js", |
| 350 "HeapSnapshotGridNodes.js", | 349 "HeapSnapshotGridNodes.js", |
| 351 "HeapSnapshotLoader.js", | 350 "HeapSnapshotLoader.js", |
| 352 "HeapSnapshotProxy.js", | 351 "HeapSnapshotProxy.js", |
| 353 "HeapSnapshotView.js", | 352 "HeapSnapshotView.js", |
| 354 "HeapSnapshotWorker.js", | 353 "HeapSnapshotWorker.js", |
| 355 "HeapSnapshotWorkerDispatcher.js", | 354 "HeapSnapshotWorkerDispatcher.js", |
| 356 "JSHeapSnapshot.js", | 355 "JSHeapSnapshot.js", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 os.system(command) | 466 os.system(command) |
| 468 os.system("rm " + injectedScriptSourceTmpFile) | 467 os.system("rm " + injectedScriptSourceTmpFile) |
| 469 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile) | 468 os.system("rm " + injectedScriptCanvasModuleSourceTmpFile) |
| 470 | 469 |
| 471 print "Checking generated code in InjectedScriptCanvasModuleSource.js..." | 470 print "Checking generated code in InjectedScriptCanvasModuleSource.js..." |
| 472 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) | 471 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) |
| 473 os.system(check_injected_webgl_calls_command) | 472 os.system(check_injected_webgl_calls_command) |
| 474 | 473 |
| 475 shutil.rmtree(modules_dir) | 474 shutil.rmtree(modules_dir) |
| 476 #os.system("rm " + protocol_externs_path) | 475 #os.system("rm " + protocol_externs_path) |
| OLD | NEW |