summaryrefslogtreecommitdiffstats
path: root/tools/heapcheck/chrome_tests.py
diff options
context:
space:
mode:
authorrsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-18 17:24:39 +0000
committerrsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-18 17:24:39 +0000
commit6ecdfa3f5a6fcc570a18c789389b1c8cdf294c04 (patch)
tree8ff1d930f92e36b364c45251791dbc2b27caf0cc /tools/heapcheck/chrome_tests.py
parent7f036f8e35fc23141788448a0d1a37df695135e6 (diff)
downloadchromium_src-6ecdfa3f5a6fcc570a18c789389b1c8cdf294c04.zip
chromium_src-6ecdfa3f5a6fcc570a18c789389b1c8cdf294c04.tar.gz
chromium_src-6ecdfa3f5a6fcc570a18c789389b1c8cdf294c04.tar.bz2
Normalize the top-level ui/ module.
This CL creates four .gypi files that are included in /ui/ui.gyp. This allows for a single unittest binary for all the submodules, rather than having individual unittest binaries for each submodule. To not break the buildbot, this creates a fake target that copies ui_unittests to gfx_unittests as temporary scaffolding. BUG=72317 TEST=gfx_unittests (really ui_unittests) passes Review URL: http://codereview.chromium.org/6688007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78711 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/heapcheck/chrome_tests.py')
-rwxr-xr-xtools/heapcheck/chrome_tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py
index 8dfaa0a..0f452ba 100755
--- a/tools/heapcheck/chrome_tests.py
+++ b/tools/heapcheck/chrome_tests.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
-# Copyright (c) 2009 The Chromium Authors. All rights reserved.
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -96,7 +96,7 @@ class ChromeTests(object):
"ui": self.TestUI, "ui_tests": self.TestUI,
"unit": self.TestUnit, "unit_tests": self.TestUnit,
"app": self.TestApp, "app_unittests": self.TestApp,
- "ui_base": self.TestUIBase, "ui_base_unittests": self.TestUIBase,
+ "ui_unit": self.TestUIUnit, "ui_unittests": self.TestUIUnit,
"gfx": self.TestGfx, "gfx_unittests": self.TestGfx,
}
@@ -294,8 +294,8 @@ class ChromeTests(object):
def TestApp(self):
return self.SimpleTest("chrome", "app_unittests")
- def TestUIBase(self):
- return self.SimpleTest("chrome", "ui_base_unittests")
+ def TestUIUnit(self):
+ return self.SimpleTest("chrome", "ui_unittests")
def TestGfx(self):
return self.SimpleTest("chrome", "gfx_unittests")