servo: Merge #7568 - Use OS-agnostic filesystem paths in Python (from frewsxcv:os-agnostic-paths); r=jdm
This will eventually need to be done for #1908 Source-Repo: https://github.com/servo/servo Source-Revision: 83972196600f04e817ddb53fda18142778905307
This commit is contained in:
@@ -11,18 +11,18 @@ import sys
|
||||
from distutils.spawn import find_executable
|
||||
|
||||
SEARCH_PATHS = [
|
||||
"python/mach",
|
||||
"tests/wpt",
|
||||
"tests/wpt/harness",
|
||||
os.path.join("python", "mach"),
|
||||
os.path.join("tests", "wpt"),
|
||||
os.path.join("tests", "wpt", "harness"),
|
||||
]
|
||||
|
||||
# Individual files providing mach commands.
|
||||
MACH_MODULES = [
|
||||
'python/servo/bootstrap_commands.py',
|
||||
'python/servo/build_commands.py',
|
||||
'python/servo/testing_commands.py',
|
||||
'python/servo/post_build_commands.py',
|
||||
'python/servo/devenv_commands.py',
|
||||
os.path.join('python', 'servo', 'bootstrap_commands.py'),
|
||||
os.path.join('python', 'servo', 'build_commands.py'),
|
||||
os.path.join('python', 'servo', 'testing_commands.py'),
|
||||
os.path.join('python', 'servo', 'post_build_commands.py'),
|
||||
os.path.join('python', 'servo', 'devenv_commands.py'),
|
||||
]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user