From 6ecdfa3f5a6fcc570a18c789389b1c8cdf294c04 Mon Sep 17 00:00:00 2001 From: "rsesek@chromium.org" Date: Fri, 18 Mar 2011 17:24:39 +0000 Subject: 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 --- tools/valgrind/chrome_tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/valgrind/chrome_tests.py') diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 4618778..9fc4709 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -264,8 +264,8 @@ class ChromeTests: 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") @@ -442,7 +442,7 @@ class ChromeTests: "ui": TestUI, "ui_tests": TestUI, "unit": TestUnit, "unit_tests": TestUnit, "app": TestApp, "app_unittests": TestApp, - "ui_base": TestUIBase, "ui_base_unittests": TestUIBase, + "ui_unit": TestUIUnit, "ui_unittests": TestUIUnit, "gfx": TestGfx, "gfx_unittests": TestGfx, } -- cgit v1.1