-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
servo: Merge #19003 - Make test-stylo compile an empty crate on Windo…
…ws without Gecko (from servo:stylo_tests_windows); r=emilio That is, in cases where it would fail to link. This will help make Rust CI be gated on compiling Stylo: rust-lang/rust#44603 Source-Repo: https://github.com/servo/servo Source-Revision: 38fe9533b93e985657f99a29772bf3d3c8694822 UltraBlame original commit: 6d6d75c9f64f65ecf8c71983a29f036d477c6ed6
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2254,6 +2254,13 @@ bat | |
build | ||
- | ||
geckolib | ||
- | ||
mach | ||
. | ||
bat | ||
test | ||
- | ||
stylo | ||
windows | ||
- | ||
msvc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
# | ||
! | ||
[ | ||
cfg | ||
( | ||
any | ||
( | ||
linking_with_gecko | ||
not | ||
( | ||
windows | ||
) | ||
) | ||
) | ||
] | ||
extern | ||
crate | ||
atomic_refcell | ||
|