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

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.py

Issue 2690333005: [WPT Export] Fix remaining Git working directory bugs (Closed)
Patch Set: Created 3 years, 10 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
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from webkitpy.common.memoized import memoized
6 from webkitpy.common.webkit_finder import WebKitFinder
7
8
9 @memoized
10 def absolute_chromium_wpt_dir(host):
11 finder = WebKitFinder(host.filesystem)
12 return finder.path_from_webkit_base('LayoutTests', 'external', 'wpt')
13
14
15 @memoized
16 def absolute_chromium_dir(host):
17 finder = WebKitFinder(host.filesystem)
18 return finder.chromium_base()
jeffcarp 2017/02/14 21:07:26 I needed to create this file to avoid a cyclical d
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698