From ad48ab7ec3dfefb241574c316b5c0ef889e5d63e Mon Sep 17 00:00:00 2001 From: Jonathan Schwender <55576758+jschwe@users.noreply.github.com> Date: Sat, 7 Dec 2024 01:10:41 +0100 Subject: [PATCH] Fix tracing enabling layout-2013 feature (#34515) Without the `?` layout_2013 is enabled if the tracing feature is selected. Signed-off-by: Jonathan Schwender --- components/servo/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index 645ccdbb3eb..cfa5568b3dc 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -24,7 +24,7 @@ no-wgl = ["mozangle/egl", "mozangle/build_dlls", "surfman/sm-angle-default"] dynamic_freetype = ["webrender/dynamic_freetype"] profilemozjs = ["script/profilemozjs"] refcell_backtrace = ["script/refcell_backtrace"] -tracing = ["dep:tracing", "compositing/tracing", "constellation/tracing", "fonts/tracing", "layout_thread_2013/tracing", "layout_thread_2020/tracing", "profile_traits/tracing", "script/tracing"] +tracing = ["dep:tracing", "compositing/tracing", "constellation/tracing", "fonts/tracing", "layout_thread_2013?/tracing", "layout_thread_2020/tracing", "profile_traits/tracing", "script/tracing"] webdriver = ["webdriver_server"] webgl_backtrace = [ "script/webgl_backtrace",