aboutsummaryrefslogtreecommitdiffstats
path: root/components/canvas/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2020-02-25 17:53:43 -0500
committerGitHub <noreply@github.com>2020-02-25 17:53:43 -0500
commit4576de974b6b619c0af8efc07ac2dfc521d1d6a8 (patch)
treeb27d8025896022efeb7e3b764f4e05606fbb9c01 /components/canvas/lib.rs
parent611601240849299bf8fa78a4eacc5b422049b7ad (diff)
parent430a65be07b1cd0b9b4f59ff4a23a687c94cdcbd (diff)
downloadservo-4576de974b6b619c0af8efc07ac2dfc521d1d6a8.tar.gz
servo-4576de974b6b619c0af8efc07ac2dfc521d1d6a8.zip
Auto merge of #25841 - dralley:remove-azure, r=SimonSapin
Remove azure canvas backend closes #25833 Issue description: Now that the raqote backend has reached feature parity and been enabled by default, we should remove the unused azure backend entirely. <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [x] These changes fix #25833 <!-- Either: --> - [ ] There are tests for these changes OR - [x] These changes do not require tests because PR only removes code, doesn't add new code
Diffstat (limited to 'components/canvas/lib.rs')
-rw-r--r--components/canvas/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs
index b61e32a63e8..1e5872420bc 100644
--- a/components/canvas/lib.rs
+++ b/components/canvas/lib.rs
@@ -9,10 +9,6 @@ extern crate bitflags;
#[macro_use]
extern crate log;
-#[cfg(feature = "canvas2d-azure")]
-mod azure_backend;
-
-#[cfg(feature = "canvas2d-raqote")]
mod raqote_backend;
pub use webgl_mode::WebGLComm;