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

Side by Side Diff: Tools/Scripts/webkitpy/thirdparty/wpt/wpt/tools/localpaths.py

Issue 1154373005: Introduce WPTServe for running W3C Blink Layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: USE 127.0.0.1 as WPT host. Skip checking subdomains. Created 5 years, 6 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 import os
Dirk Pranke 2015/06/15 23:41:48 Can we drop this file from the import? I don't thi
burnik 2015/06/16 09:24:34 This is third party code (run as part of WPT serve
Dirk Pranke 2015/06/17 04:19:39 I don't understand; can't you just remove localpat
burnik 2015/06/17 08:24:27 It's being imported in thirdparty/wpt/wpt/tools/se
2 import sys
3
4 here = os.path.abspath(os.path.split(__file__)[0])
5 repo_root = os.path.abspath(os.path.join(here, os.pardir))
6
7 sys.path.insert(0, os.path.join(repo_root, "tools"))
8 sys.path.insert(0, os.path.join(repo_root, "tools", "six"))
9 sys.path.insert(0, os.path.join(repo_root, "tools", "html5lib"))
10 sys.path.insert(0, os.path.join(repo_root, "tools", "wptserve"))
11 sys.path.insert(0, os.path.join(repo_root, "tools", "pywebsocket", "src"))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698