Turn --timeIndividualTiles back on in bench_pictures
Review URL: https://codereview.appspot.com/7299049

git-svn-id: http://skia.googlecode.com/svn/trunk@7620 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tools/bench_pictures_cfg_helper.py b/tools/bench_pictures_cfg_helper.py
index 65d63a4..178ecd3 100644
--- a/tools/bench_pictures_cfg_helper.py
+++ b/tools/bench_pictures_cfg_helper.py
@@ -15,8 +15,7 @@
 
 def TileArgs(tile_x, tile_y):
   return {'mode': ['tile', str(tile_x), str(tile_y)],
-          # TODO(borenet): Turn this back on once the parser is working.
-          #'timeIndividualTiles': True
+          'timeIndividualTiles': True,
           }
 
 
@@ -102,4 +101,4 @@
 
 def TileGridConfig(tile_x, tile_y, **kwargs):
   return GridConfig(tile_x, tile_y,
-                    **dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))
\ No newline at end of file
+                    **dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))