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

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

Issue 339007: Fix support for builds from build/ directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months 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 30068)
+++ webkit/tools/layout_tests/layout_package/platform_utils_win.py (working copy)
@@ -137,4 +137,7 @@
try:
return path_utils.PathFromBase('webkit', target, binary)
except path_utils.PathNotFound:
- return path_utils.PathFromBase('chrome', target, binary)
+ try:
+ return path_utils.PathFromBase('chrome', target, binary)
+ except path_utils.PathNotFound:
+ return path_utils.PathFromBase('build', target, binary)
« 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