diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-11-30 16:46:14 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-12-07 13:50:09 +0100 |
commit | 9d898cd460712adbacddcfe45f11173605d6cf7b (patch) | |
tree | 7923e221375000d98567025fea9914332b262826 /ports | |
parent | 05a364c7b8d5787fdd25f42a874c949ebaca1e56 (diff) | |
download | servo-9d898cd460712adbacddcfe45f11173605d6cf7b.tar.gz servo-9d898cd460712adbacddcfe45f11173605d6cf7b.zip |
Include test crates as workspace members rather that dev-dependencies
Diffstat (limited to 'ports')
-rw-r--r-- | ports/geckolib/Cargo.toml | 3 | ||||
-rw-r--r-- | ports/servo/Cargo.toml | 18 |
2 files changed, 1 insertions, 20 deletions
diff --git a/ports/geckolib/Cargo.toml b/ports/geckolib/Cargo.toml index 5f370937b68..9fbe688571a 100644 --- a/ports/geckolib/Cargo.toml +++ b/ports/geckolib/Cargo.toml @@ -31,6 +31,3 @@ servo_arc = {path = "../../components/servo_arc"} smallvec = "0.6" style = {path = "../../components/style", features = ["gecko"]} style_traits = {path = "../../components/style_traits"} - -[dev-dependencies] -stylo_tests = {path = "./tests"} diff --git a/ports/servo/Cargo.toml b/ports/servo/Cargo.toml index 489b6f63515..e872da5fe11 100644 --- a/ports/servo/Cargo.toml +++ b/ports/servo/Cargo.toml @@ -13,22 +13,6 @@ path = "main.rs" test = false bench = false -[dev-dependencies] -deny_public_fields_tests = {path = "../../tests/unit/deny_public_fields"} -gfx_tests = {path = "../../tests/unit/gfx"} -layout_tests = {path = "../../tests/unit/layout"} -malloc_size_of_tests = {path = "../../tests/unit/malloc_size_of"} -metrics_tests = {path = "../../tests/unit/metrics"} -msg_tests = {path = "../../tests/unit/msg"} -net_tests = {path = "../../tests/unit/net"} -net_traits_tests = {path = "../../tests/unit/net_traits"} -profile_tests = {path = "../../tests/unit/profile"} -script_tests = {path = "../../tests/unit/script"} -script_plugins_tests = {path = "../../tests/unit/script_plugins"} -servo_config_tests = {path = "../../tests/unit/servo_config"} -servo_remutex_tests = {path = "../../tests/unit/servo_remutex"} -style_tests = {path = "../../tests/unit/style"} - [features] default = ["unstable", "default-except-unstable"] default-except-unstable = ["webdriver", "max_log_level"] @@ -38,7 +22,7 @@ energy-profiling = ["libservo/energy-profiling"] debugmozjs = ["libservo/debugmozjs"] googlevr = ["libservo/googlevr"] oculusvr = ["libservo/oculusvr"] -unstable = ["libservo/unstable", "profile_tests/unstable"] +unstable = ["libservo/unstable"] [dependencies] backtrace = "0.3" |