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

Side by Side Diff: webkit/tools/layout_tests/webkitpy/layout_package/platform_utils_win.py

Issue 545145: Move the layout test scripts into a 'webkitpy' subdirectory in preparation... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: try to de-confuse svn and the try bots Created 10 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """This is the Linux implementation of the layout_package.platform_utils 5 """This is the Linux implementation of the layout_package.platform_utils
6 package. This file should only be imported by that package.""" 6 package. This file should only be imported by that package."""
7 7
8 import os 8 import os
9 import path_utils 9 import path_utils
10 import subprocess 10 import subprocess
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 two places: src/webkit/$target (preferably, which we get if we 175 two places: src/webkit/$target (preferably, which we get if we
176 built using webkit_glue.gyp), or src/chrome/$target (if compiled some 176 built using webkit_glue.gyp), or src/chrome/$target (if compiled some
177 other way).""" 177 other way)."""
178 try: 178 try:
179 return path_utils.PathFromBase('webkit', target, binary) 179 return path_utils.PathFromBase('webkit', target, binary)
180 except path_utils.PathNotFound: 180 except path_utils.PathNotFound:
181 try: 181 try:
182 return path_utils.PathFromBase('chrome', target, binary) 182 return path_utils.PathFromBase('chrome', target, binary)
183 except path_utils.PathNotFound: 183 except path_utils.PathNotFound:
184 return path_utils.PathFromBase('build', target, binary) 184 return path_utils.PathFromBase('build', target, binary)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698