Chromium Code Reviews| OLD | NEW |
|---|---|
| (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
| |
| OLD | NEW |