mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 02:25:34 +00:00
5da0cad73a
<!-- Please describe your changes on the following line: --> `Cargo` will print the path where it runs. Origin python script `cd` into the crate folder, so the root path is set in the crate. Now I use `--manifest-path PATH` to `cargo build`, so the root path is at `servo`. Origin path in error message: ``` error: expected one of `!` or `::`, found `#` --> lib.rs:24:1 ``` Now it would be: ``` error: expected one of `!` or `::`, found `use` --> ports/geckolib/glue.rs:11:1 ``` --- <!-- 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 fix #9895 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- 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. --> Source-Repo: https://github.com/servo/servo Source-Revision: 4df647ed758730dd82a3eae5e78c296e495239d5 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : c56cbdaf45e2d8c9bc4a27d13801cd5011f7be1d
39 lines
380 B
Plaintext
39 lines
380 B
Plaintext
/.servo
|
|
/.cargo/*
|
|
!/.cargo/config.*
|
|
/.servobuild
|
|
/target
|
|
/ports/android/bin
|
|
/ports/android/libs
|
|
/ports/android/local.properties
|
|
/ports/android/obj
|
|
/python/_virtualenv
|
|
/python/tidy/servo_tidy.egg-info
|
|
*~
|
|
*.pkl
|
|
*.pyc
|
|
*.swp
|
|
*.swo
|
|
*.csv
|
|
*.rej
|
|
*.orig
|
|
.DS_Store
|
|
Servo.app
|
|
.config.mk.last
|
|
/glfw
|
|
|
|
# Editors
|
|
|
|
# IntelliJ
|
|
.idea
|
|
*.iws
|
|
*.iml
|
|
|
|
#Gradle
|
|
.gradle
|
|
|
|
# VSCode
|
|
.vscode
|
|
|
|
/unminified-js
|