aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMukilan Thiyagarajan <me@mukilan.in>2023-06-08 23:13:53 +0530
committerMukilan Thiyagarajan <me@mukilan.in>2023-06-08 23:13:53 +0530
commit8a46a4ee05de380f0f4bdcd035a4b3cde5e9df10 (patch)
tree152090a3b611cdbb12d6ac615641579cea84e4aa
parentf215ddf16f910f25eb443a02314686c9ae0ca5dc (diff)
downloadservo-8a46a4ee05de380f0f4bdcd035a4b3cde5e9df10.tar.gz
servo-8a46a4ee05de380f0f4bdcd035a4b3cde5e9df10.zip
Use layout 2020 by default
Signed-off-by: Mukilan Thiyagarajan <me@mukilan.in>
-rw-r--r--python/servo/command_base.py2
-rw-r--r--servobuild.example2
2 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 9ab6c3935f6..211691b6e62 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -252,7 +252,7 @@ class CommandBase(object):
self.config["build"].setdefault("mode", "")
self.config["build"].setdefault("debug-assertions", False)
self.config["build"].setdefault("debug-mozjs", False)
- self.config["build"].setdefault("layout-2020", False)
+ self.config["build"].setdefault("layout-2020", True)
self.config["build"].setdefault("media-stack", "auto")
self.config["build"].setdefault("ccache", "")
self.config["build"].setdefault("rustflags", "")
diff --git a/servobuild.example b/servobuild.example
index 7fdef6607b5..076d9469ea8 100644
--- a/servobuild.example
+++ b/servobuild.example
@@ -44,7 +44,7 @@ webgl-backtrace = false
dom-backtrace = false
# Default to the “2020” implementation of CSS layout instead of the “2013” one.
-layout-2020 = false
+layout-2020 = true
# Pick a media stack based on the target. Other values are "gstreamer" and "dummy"
media-stack = "auto"