diff options
author | bors-servo <infra@servo.org> | 2023-06-09 15:05:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 15:05:50 +0200 |
commit | f63f981654453c0687922f6748f4bf20fac7e66e (patch) | |
tree | 7527792fa07a0a1e0dd986a6abaa448779912633 /python | |
parent | b36db7f90edd2bdf6569413ea204e40b87324b2c (diff) | |
parent | 8a46a4ee05de380f0f4bdcd035a4b3cde5e9df10 (diff) | |
download | servo-f63f981654453c0687922f6748f4bf20fac7e66e.tar.gz servo-f63f981654453c0687922f6748f4bf20fac7e66e.zip |
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.
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 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", "") |