mirror of
https://github.com/servo/servo.git
synced 2025-07-27 17:20:36 +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("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", "")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue