diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-09-11 11:52:30 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-09-16 13:03:08 -0400 |
commit | dcbec3e4047b17ea0f7a592cbafa54d81a68d6db (patch) | |
tree | f34d012f1d896b5e79dfe23d692baf5c66a04170 /components/script | |
parent | 86ad84198ef0f53b12e0eecfacd9edbfa0d27a1a (diff) | |
download | servo-dcbec3e4047b17ea0f7a592cbafa54d81a68d6db.tar.gz servo-dcbec3e4047b17ea0f7a592cbafa54d81a68d6db.zip |
Build native dependencies with UWP compatibility.
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index 225daef5e04..f022352497e 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -20,6 +20,7 @@ webidl_lint = ["script_plugins/webidl_lint"] default = ["unrooted_must_root_lint", "webidl_lint"] webgl_backtrace = ["backtrace", "canvas_traits/webgl_backtrace"] js_backtrace = ["backtrace"] +uwp = ["js/uwp"] [build-dependencies] cmake = "0.1" @@ -27,7 +28,7 @@ phf_codegen = "0.7" phf_shared = "0.7" serde_json = "1.0" -[target.'cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))'.dependencies] +[target.'cfg(target_os = "linux")'.dependencies] tinyfiledialogs = "3.0" [dependencies] |