Revision af45630949c2091afd45d256c7f3ec6c526899a9 authored by Ms2ger on 12 June 2015, 13:22:02 UTC, committed by Ms2ger on 12 June 2015, 13:22:02 UTC
The canonical location of the WebIDL parser is /resources/WebIDLParser.js.
1 parent 3687cd2
Raw File
localpaths.py
import os
import sys

here = os.path.abspath(os.path.split(__file__)[0])
repo_root = os.path.abspath(os.path.join(here, os.pardir))

sys.path.insert(0, os.path.join(repo_root, "tools"))
sys.path.insert(0, os.path.join(repo_root, "tools", "six"))
sys.path.insert(0, os.path.join(repo_root, "tools", "html5lib"))
sys.path.insert(0, os.path.join(repo_root, "tools", "wptserve"))
sys.path.insert(0, os.path.join(repo_root, "tools", "pywebsocket", "src"))
back to top