diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/gfx/gfx.rc | 10 | ||||
-rw-r--r-- | src/components/gfx/platform/macos/font.rs | 6 | ||||
-rwxr-xr-x | src/components/main/servo.rc | 10 | ||||
-rw-r--r-- | src/components/msg/msg.rc | 8 | ||||
-rw-r--r-- | src/components/net/net.rc | 2 | ||||
-rw-r--r-- | src/components/script/script.rc | 2 | ||||
-rw-r--r-- | src/components/util/util.rc | 2 | ||||
m--------- | src/platform/linux/rust-xlib | 0 | ||||
m--------- | src/platform/macos/rust-core-foundation | 0 | ||||
m--------- | src/platform/macos/rust-core-graphics | 0 | ||||
m--------- | src/platform/macos/rust-core-text | 0 | ||||
m--------- | src/platform/macos/rust-io-surface | 0 | ||||
m--------- | src/support/alert/rust-alert | 0 | ||||
m--------- | src/support/azure/rust-azure | 0 | ||||
m--------- | src/support/geom/rust-geom | 0 | ||||
m--------- | src/support/layers/rust-layers | 0 | ||||
m--------- | src/support/opengles/rust-opengles | 0 | ||||
m--------- | src/support/sharegl/sharegl | 0 |
18 files changed, 20 insertions, 20 deletions
diff --git a/src/components/gfx/gfx.rc b/src/components/gfx/gfx.rc index e8b9420461e..0eb60d63fb5 100644 --- a/src/components/gfx/gfx.rc +++ b/src/components/gfx/gfx.rc @@ -12,8 +12,8 @@ extern mod azure; extern mod extra; -extern mod geom = "rust-geom"; -extern mod layers = "rust-layers"; +extern mod geom; +extern mod layers; extern mod stb_image; extern mod png; extern mod servo_net (name = "net"); @@ -30,9 +30,9 @@ extern mod harfbuzz; #[cfg(target_os="linux")] #[cfg(target_os="android")] extern mod freetype; // Mac OS-specific library dependencies -#[cfg(target_os="macos")] extern mod core_foundation = "rust-core-foundation"; -#[cfg(target_os="macos")] extern mod core_graphics = "rust-core-graphics"; -#[cfg(target_os="macos")] extern mod core_text = "rust-core-text"; +#[cfg(target_os="macos")] extern mod core_foundation; +#[cfg(target_os="macos")] extern mod core_graphics; +#[cfg(target_os="macos")] extern mod core_text; pub use gfx_font = font; pub use gfx_font_context = font_context; diff --git a/src/components/gfx/platform/macos/font.rs b/src/components/gfx/platform/macos/font.rs index 884d71e7064..86b0864b666 100644 --- a/src/components/gfx/platform/macos/font.rs +++ b/src/components/gfx/platform/macos/font.rs @@ -4,9 +4,9 @@ /// Implementation of Quartz (CoreGraphics) fonts. -extern mod core_foundation = "rust-core-foundation"; -extern mod core_graphics = "rust-core-graphics"; -extern mod core_text = "rust-core-text"; +extern mod core_foundation; +extern mod core_graphics; +extern mod core_text; use font::{CSSFontWeight, FontHandleMethods, FontMetrics, FontTableMethods}; use font::{FontTableTag, FontWeight100, FontWeight200, FontWeight300, FontWeight400}; diff --git a/src/components/main/servo.rc b/src/components/main/servo.rc index cc451b4e7ce..43bd737bdd7 100755 --- a/src/components/main/servo.rc +++ b/src/components/main/servo.rc @@ -15,15 +15,15 @@ extern mod alert; extern mod azure; -extern mod geom = "rust-geom"; +extern mod geom; extern mod gfx (name = "gfx"); #[cfg(not(target_os="android"))] extern mod glfw; #[cfg(target_os="android")] extern mod glut; extern mod js; -extern mod layers = "rust-layers"; -extern mod opengles = "rust-opengles"; +extern mod layers; +extern mod opengles; extern mod png; extern mod script; extern mod servo_net (name = "net"); @@ -35,9 +35,9 @@ extern mod stb_image; extern mod extra; #[cfg(target_os="macos")] -extern mod core_graphics = "rust-core-graphics"; +extern mod core_graphics; #[cfg(target_os="macos")] -extern mod core_text = "rust-core-text"; +extern mod core_text; use compositing::{CompositorChan, CompositorTask}; use constellation::Constellation; diff --git a/src/components/msg/msg.rc b/src/components/msg/msg.rc index 2cef8db14a2..3811f5bffa7 100644 --- a/src/components/msg/msg.rc +++ b/src/components/msg/msg.rc @@ -10,14 +10,14 @@ extern mod azure; extern mod extra; -extern mod geom = "rust-geom"; -extern mod layers = "rust-layers"; +extern mod geom; +extern mod layers; extern mod std; #[cfg(target_os="macos")] -extern mod core_foundation = "rust-core-foundation"; +extern mod core_foundation; #[cfg(target_os="macos")] -extern mod io_surface = "rust-io-surface"; +extern mod io_surface; pub mod compositor_msg; pub mod constellation_msg; diff --git a/src/components/net/net.rc b/src/components/net/net.rc index 30c80f885bb..da445e1e964 100644 --- a/src/components/net/net.rc +++ b/src/components/net/net.rc @@ -10,7 +10,7 @@ #[feature(globs, managed_boxes)]; -extern mod geom = "rust-geom"; +extern mod geom; extern mod http; extern mod servo_util (name = "util"); extern mod stb_image; diff --git a/src/components/script/script.rc b/src/components/script/script.rc index 7490024aeb8..1715ff8de8f 100644 --- a/src/components/script/script.rc +++ b/src/components/script/script.rc @@ -13,7 +13,7 @@ #[feature(globs, macro_rules, struct_variant, managed_boxes)]; -extern mod geom = "rust-geom"; +extern mod geom; extern mod hubbub; extern mod encoding; extern mod js; diff --git a/src/components/util/util.rc b/src/components/util/util.rc index d4b6b63483f..95e3b4e4662 100644 --- a/src/components/util/util.rc +++ b/src/components/util/util.rc @@ -11,7 +11,7 @@ #[feature(macro_rules, managed_boxes)]; extern mod extra; -extern mod geom = "rust-geom"; +extern mod geom; pub mod cache; pub mod geometry; diff --git a/src/platform/linux/rust-xlib b/src/platform/linux/rust-xlib -Subproject 4466b6fb89ffd45222176d9381c19aa474ef8a3 +Subproject 965cc1f01134e186f01f048639b5ab1593f6d3c diff --git a/src/platform/macos/rust-core-foundation b/src/platform/macos/rust-core-foundation -Subproject b41b972fbd67f2fba966753d67e735c0431d1cf +Subproject 0a9090b60dc5ec8516ae73ae4398c91727231df diff --git a/src/platform/macos/rust-core-graphics b/src/platform/macos/rust-core-graphics -Subproject 5439c904951dcb9435e9c52fb0e53a1d853c585 +Subproject bfb234fbafb11beeecb81dc763ecf8c7ab53923 diff --git a/src/platform/macos/rust-core-text b/src/platform/macos/rust-core-text -Subproject c046cbbd346cc5abead05d17b0f1669110c1cb3 +Subproject bb5d9a1d1bb6e9720d3cd46b14530f24cccf51b diff --git a/src/platform/macos/rust-io-surface b/src/platform/macos/rust-io-surface -Subproject 1cb5c9274291d97d87648ced60510f30c54f94a +Subproject 516e2c11b4ecc464f166a9b2a16d7bf25044c5d diff --git a/src/support/alert/rust-alert b/src/support/alert/rust-alert -Subproject a9fd3aa3ca7eba68f4bcd8906e281f27b78fda3 +Subproject ce3cdc68b942cabfaa766d0cfe34ecf758623fb diff --git a/src/support/azure/rust-azure b/src/support/azure/rust-azure -Subproject 60ee86c802f45a8e87fa462cd21d4b074f837ce +Subproject b6fd2d88ad921f6f36fc8ac1fdd5437e0ba1a45 diff --git a/src/support/geom/rust-geom b/src/support/geom/rust-geom -Subproject 83f47c9b3129fed40ae9680d84dade478f33174 +Subproject 928ee9d5055acd84a2f084b40c33e8556cbd008 diff --git a/src/support/layers/rust-layers b/src/support/layers/rust-layers -Subproject c86eaa809c906d70aef4f3af0ac9f7377cc8e8c +Subproject 985790fe16d10d50391675d00df832fc2b8e104 diff --git a/src/support/opengles/rust-opengles b/src/support/opengles/rust-opengles -Subproject 0d47098172620e4e10d1639732c9755eb9956e0 +Subproject 60776fdefad6c94fb08ca82b1b853340878c2ff diff --git a/src/support/sharegl/sharegl b/src/support/sharegl/sharegl -Subproject b80b6cd976a75a329abbed72a0c999797a20f5a +Subproject bb10edb7fb2428322a45664ebe8a9e0ce1679db |