diff options
author | Gregory Terzian <gterzian@users.noreply.github.com> | 2018-04-28 22:48:14 +0800 |
---|---|---|
committer | Gregory Terzian <gterzian@users.noreply.github.com> | 2018-05-23 21:45:57 +0800 |
commit | d4382407722108a52bf23b1f3a3114984f13fb90 (patch) | |
tree | 55f5dad9ccad14e6911cb5434f2d362ba79f166e /components/script/lib.rs | |
parent | a297e8f2881d0d1927160d2ebc0e4b26d71f2534 (diff) | |
download | servo-d4382407722108a52bf23b1f3a3114984f13fb90.tar.gz servo-d4382407722108a52bf23b1f3a3114984f13fb90.zip |
move msg to embedder_traits, use in script, handle send error in embedder
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index bee088aa5e0..cf020ab9ac6 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -93,7 +93,7 @@ extern crate style; extern crate style_traits; extern crate swapper; extern crate time; -#[cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))] +#[cfg(target_os = "linux")] extern crate tinyfiledialogs; extern crate unicode_segmentation; extern crate url; |