Add some stubs and a makefile

This commit is contained in:
Patrick Walton 2012-03-27 13:38:54 -07:00
parent ce30d4520d
commit 783455f684
7 changed files with 44 additions and 0 deletions

0
src/dom/base.rs Normal file
View file

0
src/dom/rcu.rs Normal file
View file

0
src/layout/base.rs Normal file
View file

21
src/servo.rc Executable file
View file

@ -0,0 +1,21 @@
#[link(name = "servo",
vers = "0.1",
uuid = "637ffc98-9058-471d-9de7-abfc49ef0549",
url = "http://servo.org/")];
#[comment = "The Servo Parallel Browser Project"];
#[license = "MPL"];
mod dom {
mod base;
mod rcu;
}
mod layout {
mod base;
}
mod widget {
mod base;
}

4
src/widget/base.rs Normal file
View file

@ -0,0 +1,4 @@
fn main() {
// TODO
}