diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 20:13:04 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 20:13:04 +0000 |
commit | 04a40f841b662a1e28bd579cc68fa3a57e233bbd (patch) | |
tree | 364430077eb1db1256193acaddf9de54535b3efd /webkit | |
parent | 3d315d247f3eeddde21be18bd7e9a9c5c4731beb (diff) | |
download | chromium_src-04a40f841b662a1e28bd579cc68fa3a57e233bbd.zip chromium_src-04a40f841b662a1e28bd579cc68fa3a57e233bbd.tar.gz chromium_src-04a40f841b662a1e28bd579cc68fa3a57e233bbd.tar.bz2 |
Remove the 'Hammer' name in favor of the Debug|Release names
and paths we'll use in gyp-generated files.
Review URL: http://codereview.chromium.org/56158
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/tools/layout_tests/layout_package/platform_utils_linux.py | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/webkit/tools/layout_tests/layout_package/platform_utils_linux.py b/webkit/tools/layout_tests/layout_package/platform_utils_linux.py index 0ea0bec..72aa927 100644 --- a/webkit/tools/layout_tests/layout_package/platform_utils_linux.py +++ b/webkit/tools/layout_tests/layout_package/platform_utils_linux.py @@ -161,8 +161,7 @@ class PlatformUtility(object): def ImageCompareExecutablePath(self, target): """Path to the image_diff binary.""" - # See mmoss TODO below. - return PathFromBase('chrome', 'Hammer', 'image_diff') + return PathFromBase('sconsbuild', target, 'image_diff') def TestShellBinary(self): """The name of the binary for TestShell.""" @@ -174,14 +173,7 @@ class PlatformUtility(object): Args: target: Build target mode (debug or release) """ - # TODO(mmoss) - hard-coded to "Hammer" for now until I look into the scons - # output directory logic (and how/if it will change once Linux supports - # multiple debug/release targets). - try: - path = PathFromBase('webkit', 'Hammer', self.TestShellBinary()) - except google.path_utils.PathNotFound: - path = PathFromBase('chrome', 'Hammer', self.TestShellBinary()) - return path + return PathFromBase('sconsbuild', target, self.TestShellBinary()) def FuzzyMatchBinaryPath(self): """Return the path to the fuzzy matcher binary.""" |