diff options
author | bors-servo <infra@servo.org> | 2023-05-19 13:09:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 13:09:29 +0200 |
commit | 71c5bb02b41b8d98b1612563558c2c14b3e20b1a (patch) | |
tree | 3896fe2ce7741ae30e67dbe1f5c84acb0272c087 /python/servo/build_commands.py | |
parent | 42332e588849aa5451f81e976dea0d1c19ea7a1b (diff) | |
parent | 5be14ecc3cc92309637604b48bdcf249b110ac16 (diff) | |
download | servo-71c5bb02b41b8d98b1612563558c2c14b3e20b1a.tar.gz servo-71c5bb02b41b8d98b1612563558c2c14b3e20b1a.zip |
Auto merge of #29754 - mrobinson:organize-python-by-platform, r=mukilan
Start organizing platform-specific Python code
This starts to split platform-specific Python code into its own module, which should help to tidy up our mach commands and make things more reusable. This is step one toward fixing #25335.
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because they just change mach scripts.
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 6cd4bdc7c45..1f69637ad85 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -35,7 +35,7 @@ from mach.registrar import Registrar from mach_bootstrap import _get_exec_path from servo.command_base import CommandBase, cd, call, check_call, append_to_path_env, gstreamer_root from servo.gstreamer import windows_dlls, windows_plugins, macos_plugins -from servo.util import host_triple +from servo.platform import host_triple @CommandProvider |