| Index: tools/heapcheck/chrome_tests.py
|
| diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py
|
| index 965e7207a1bb9db5a378450c46a609672f69394c..86b6fff118a11edd43346183495e30f7609b7d30 100755
|
| --- a/tools/heapcheck/chrome_tests.py
|
| +++ b/tools/heapcheck/chrome_tests.py
|
| @@ -101,7 +101,6 @@ class ChromeTests(object):
|
| "ui_unit": self.TestUIUnit, "ui_unittests": self.TestUIUnit,
|
| "unit": self.TestUnit, "unit_tests": self.TestUnit,
|
| "views": self.TestViews, "views_unittests": self.TestViews,
|
| - "gfx": self.TestGfx, "gfx_unittests": self.TestGfx,
|
| }
|
|
|
| if test not in self._test_list:
|
| @@ -311,13 +310,6 @@ class ChromeTests(object):
|
| def TestViews(self):
|
| return self.SimpleTest("views", "views_unittests")
|
|
|
| - def TestGfx(self):
|
| - # Run ui_unittests, a successor of gfx_unittests, since gfx_unittests is
|
| - # deprecated.
|
| - # TODO(hbono): This is a band-aid fix. We need to change the master script
|
| - # so our bots run ui_unittests.
|
| - return self.SimpleTest("chrome", "ui_unittests")
|
| -
|
| def TestLayoutChunk(self, chunk_num, chunk_size):
|
| '''Runs tests [chunk_num*chunk_size .. (chunk_num+1)*chunk_size).
|
|
|
|
|