diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-07-02 23:55:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-02 23:55:44 -0400 |
commit | 50033878a6d687a54ee5b3d1631cca2bcc32e508 (patch) | |
tree | 85ca839949d0c48cec32a486ca041fe7e6931b54 /components/canvas/lib.rs | |
parent | a7ff87f0e97447fbe347fe0d188fad524c80ffa8 (diff) | |
parent | 6609b098d6f12e6ccaeb83783778efa80fd20271 (diff) | |
download | servo-50033878a6d687a54ee5b3d1631cca2bcc32e508.tar.gz servo-50033878a6d687a54ee5b3d1631cca2bcc32e508.zip |
Auto merge of #23676 - servo:check, r=Manishearth
Share more `./mach build` logic with mach check, doc, test-unit
Fixes #23659
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23676)
<!-- Reviewable:end -->
Diffstat (limited to 'components/canvas/lib.rs')
-rw-r--r-- | components/canvas/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs index 28dd1e04f5d..ba10f02636c 100644 --- a/components/canvas/lib.rs +++ b/components/canvas/lib.rs @@ -7,10 +7,10 @@ #[macro_use] extern crate log; -#[cfg(feature = "azure_backend")] +#[cfg(feature = "canvas2d-azure")] mod azure_backend; -#[cfg(feature = "raqote_backend")] +#[cfg(feature = "canvas2d-raqote")] mod raqote_backend; pub mod canvas_data; |