mirror of
https://github.com/servo/servo.git
synced 2025-07-28 09:40:33 +01:00
Auto merge of #29862 - mukilan:default-to-layout-2020, r=jdm
Use layout 2020 by default This PR switches `./mach build` to use layout 2020 by default. It doesn't switch the nightly builds served from download.servo.org to layout 2020. I can add that change to this PR if we are ready to make the switch in nightly builds as well. - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #29843 - [x] These changes do not require tests because modify mach build configuration.
This commit is contained in:
commit
f63f981654
2 changed files with 2 additions and 2 deletions
|
@ -252,7 +252,7 @@ class CommandBase(object):
|
||||||
self.config["build"].setdefault("mode", "")
|
self.config["build"].setdefault("mode", "")
|
||||||
self.config["build"].setdefault("debug-assertions", False)
|
self.config["build"].setdefault("debug-assertions", False)
|
||||||
self.config["build"].setdefault("debug-mozjs", 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("media-stack", "auto")
|
||||||
self.config["build"].setdefault("ccache", "")
|
self.config["build"].setdefault("ccache", "")
|
||||||
self.config["build"].setdefault("rustflags", "")
|
self.config["build"].setdefault("rustflags", "")
|
||||||
|
|
|
@ -44,7 +44,7 @@ webgl-backtrace = false
|
||||||
dom-backtrace = false
|
dom-backtrace = false
|
||||||
|
|
||||||
# Default to the “2020” implementation of CSS layout instead of the “2013” one.
|
# 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"
|
# Pick a media stack based on the target. Other values are "gstreamer" and "dummy"
|
||||||
media-stack = "auto"
|
media-stack = "auto"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue