cef: Don't link against librustc in the final build artifact

This commit is contained in:
Patrick Walton 2014-11-19 12:12:04 -08:00
parent 9da7f10c3c
commit 10cc07e137

View file

@ -10,10 +10,11 @@
#![feature(phase)] #![feature(phase)]
#[phase(plugin, link)] #[phase(plugin, link)]
extern crate log; extern crate log;
#[phase(plugin)]
extern crate "plugins" as servo_plugins;
extern crate rustuv; extern crate rustuv;
extern crate "plugins" as servo_plugins;
extern crate servo; extern crate servo;
extern crate azure; extern crate azure;