Index: tools/grit/grit_info.py |
diff --git a/tools/grit/grit_info.py b/tools/grit/grit_info.py |
index c0e0ed8e61247318b49ee855c454d69572d3ac4c..eada1fcbe0dbb87f0147c336ccae5dcf69d085a1 100755 |
--- a/tools/grit/grit_info.py |
+++ b/tools/grit/grit_info.py |
@@ -6,6 +6,7 @@ |
'''Tool to determine inputs and outputs of a grit file. |
''' |
+import cProfile |
Mark Mentovai
2011/05/16 16:42:54
Unneeded?
|
import optparse |
import os |
import posixpath |
@@ -128,4 +129,5 @@ def main(argv): |
if __name__ == '__main__': |
+ #cProfile.run('main(sys.argv)', 'grit_profile') |
Mark Mentovai
2011/05/16 16:42:54
Unneeded? (Revert the changes in this file?)
|
sys.exit(main(sys.argv)) |