Title: [107064] trunk/Tools
Revision
107064
Author
rn...@webkit.org
Date
2012-02-08 03:40:09 -0800 (Wed, 08 Feb 2012)

Log Message

Revert a part of the change in r106687 as a build fix.

Since Chromium port doesn't checkout the entire WebKit trunk,
we can't run "svn info" on webkit_base.

* Scripts/webkitpy/layout_tests/port/base.py:
(Port.repository_paths):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (107063 => 107064)


--- trunk/Tools/ChangeLog	2012-02-08 11:15:40 UTC (rev 107063)
+++ trunk/Tools/ChangeLog	2012-02-08 11:40:09 UTC (rev 107064)
@@ -1,3 +1,13 @@
+2012-02-08  Ryosuke Niwa  <rn...@webkit.org>
+
+        Revert a part of the change in r106687 as a build fix.
+
+        Since Chromium port doesn't checkout the entire WebKit trunk,
+        we can't run "svn info" on webkit_base.
+
+        * Scripts/webkitpy/layout_tests/port/base.py:
+        (Port.repository_paths):
+
 2012-02-07  Ryosuke Niwa  <rn...@webkit.org>
 
         run-perf-tests doesn't recognize paths that start with PerformanceTests

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py (107063 => 107064)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2012-02-08 11:15:40 UTC (rev 107063)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2012-02-08 11:40:09 UTC (rev 107064)
@@ -900,9 +900,12 @@
     def repository_paths(self):
         """Returns a list of (repository_name, repository_path) tuples of its depending code base.
         By default it returns a list that only contains a ('webkit', <webkitRepossitoryPath>) tuple."""
-        return [('webkit', self.webkit_base())]
 
+        # We use LayoutTest directory here because webkit_base isn't a part webkit repository in Chromium port
+        # where turnk isn't checked out as a whole.
+        return [('webkit', self.layout_tests_dir())]
 
+
     _WDIFF_DEL = '##WDIFF_DEL##'
     _WDIFF_ADD = '##WDIFF_ADD##'
     _WDIFF_END = '##WDIFF_END##'
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to