summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-09 23:44:00 +0000
committerbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-09 23:44:00 +0000
commit85f58954904bc633f6698ec2d31f1cb9e06d0a2c (patch)
treedeb62f8a8ec62467ae0ef648a8e95d95e2b908dc /webkit
parente8a9f206a717f19fee89ac9b30b6f517ae000f6b (diff)
downloadchromium_src-85f58954904bc633f6698ec2d31f1cb9e06d0a2c.zip
chromium_src-85f58954904bc633f6698ec2d31f1cb9e06d0a2c.tar.gz
chromium_src-85f58954904bc633f6698ec2d31f1cb9e06d0a2c.tar.bz2
Change to look for webkit.gyp instead of webkit.sln.
Review URL: http://codereview.chromium.org/67028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13483 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/tools/layout_tests/layout_package/path_utils.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/webkit/tools/layout_tests/layout_package/path_utils.py b/webkit/tools/layout_tests/layout_package/path_utils.py
index 65160e4..5a4adf0 100644
--- a/webkit/tools/layout_tests/layout_package/path_utils.py
+++ b/webkit/tools/layout_tests/layout_package/path_utils.py
@@ -31,14 +31,14 @@ def WinPathToUnix(path):
return path.replace('\\', '/')
def WebKitRoot():
- """Returns the full path to the directory containing webkit.sln. Raises
- PathNotFound if we're unable to find webkit.sln."""
+ """Returns the full path to the directory containing webkit.gyp. Raises
+ PathNotFound if we're unable to find webkit.gyp."""
global _webkit_root
if _webkit_root:
return _webkit_root
- webkit_sln_path = google.path_utils.FindUpward(google.path_utils.ScriptDir(),
- 'webkit.sln')
- _webkit_root = os.path.dirname(webkit_sln_path)
+ webkit_gyp_path = google.path_utils.FindUpward(google.path_utils.ScriptDir(),
+ 'webkit.gyp')
+ _webkit_root = os.path.dirname(webkit_gyp_path)
return _webkit_root
def LayoutDataDir():
@@ -218,4 +218,4 @@ def PlatformDir():
return GetPlatformUtil().PlatformDir()
def PlatformNewResultsDir():
- return GetPlatformUtil().PlatformNewResultsDir() \ No newline at end of file
+ return GetPlatformUtil().PlatformNewResultsDir()