Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: webkit/tools/layout_tests/layout_package/platform_utils_win.py

Issue 353014: Fix the windows search path to look in oldest applicable platform dir first... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/layout_tests/layout_package/platform_utils_win.py
===================================================================
--- webkit/tools/layout_tests/layout_package/platform_utils_win.py (revision 30650)
+++ webkit/tools/layout_tests/layout_package/platform_utils_win.py (working copy)
@@ -43,12 +43,12 @@
"""
dirs = []
+ if all_versions or PlatformVersion() == "-xp":
+ dirs.append(path_utils.ChromiumBaselinePath('chromium-win-xp'))
+ if all_versions or PlatformVersion() in ("-vista", "-xp"):
+ dirs.append(path_utils.ChromiumBaselinePath('chromium-win-vista'))
if all_versions or PlatformVersion() in ("-7", "-vista", "-xp"):
dirs.append(path_utils.ChromiumBaselinePath('chromium-win-7'))
- if all_versions or PlatformVersion() in ("-vista", "-xp"):
- dirs.append(path_utils.ChromiumBaselinePath('chromium-win-vista'))
- if all_versions or PlatformVersion() == "-xp":
- dirs.append(path_utils.ChromiumBaselinePath('chromium-win-xp'))
dirs.append(path_utils.ChromiumBaselinePath('chromium-win'))
dirs.append(path_utils.WebKitBaselinePath('win'))
dirs.append(path_utils.WebKitBaselinePath('mac'))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698