diff options
-rw-r--r-- | python/servo/command_base.py | 2 | ||||
-rw-r--r-- | servobuild.example | 2 |
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" |