Title: [97307] trunk/Tools
- Revision
- 97307
- Author
- [email protected]
- Date
- 2011-10-12 15:07:07 -0700 (Wed, 12 Oct 2011)
Log Message
[chromium] remove old build dirs on chromium-win
https://bugs.webkit.org/show_bug.cgi?id=69961
Reviewed by Adam Barth.
* Scripts/webkitpy/layout_tests/port/chromium_win.py: Output is now
always in build and never in chrome or webkit.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (97306 => 97307)
--- trunk/Tools/ChangeLog 2011-10-12 21:50:42 UTC (rev 97306)
+++ trunk/Tools/ChangeLog 2011-10-12 22:07:07 UTC (rev 97307)
@@ -1,3 +1,13 @@
+2011-10-12 Tony Chang <[email protected]>
+
+ [chromium] remove old build dirs on chromium-win
+ https://bugs.webkit.org/show_bug.cgi?id=69961
+
+ Reviewed by Adam Barth.
+
+ * Scripts/webkitpy/layout_tests/port/chromium_win.py: Output is now
+ always in build and never in chrome or webkit.
+
2011-10-12 Dimitri Glazkov <[email protected]>
garden-o-matic's "Expect Failure" button does not work correctly, so we should remove it until the plumbing is fixed to avoid landmines.
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py (97306 => 97307)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py 2011-10-12 21:50:42 UTC (rev 97306)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py 2011-10-12 22:07:07 UTC (rev 97307)
@@ -159,16 +159,7 @@
p = self.path_from_chromium_base('build', *comps)
if self._filesystem.exists(p):
return p
- p = self.path_from_chromium_base('webkit', *comps)
- if self._filesystem.exists(p):
- return p
- p = self.path_from_chromium_base('chrome', *comps)
- if self._filesystem.exists(p):
- return p
- p = self._filesystem.join(self.path_from_webkit_base(), 'Source', 'WebKit', 'chromium', 'build', *comps)
- if self._filesystem.exists(p):
- return p
- return self._filesystem.join(self.path_from_webkit_base(), 'Source', 'WebKit', 'chromium', *comps)
+ return self._filesystem.join(self.path_from_webkit_base(), 'Source', 'WebKit', 'chromium', 'build', *comps)
def _uses_apache(self):
return False
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes