diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-06-28 10:07:08 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-07-06 14:49:24 +0200 |
commit | d31cdb682f717d6dbdbd57d60855fd92d822cd66 (patch) | |
tree | 6dbb0c6007b545835a119bdf8e78cb5a665afa34 /python/servo/command_base.py | |
parent | f11c6045e33a921f03223c313781586189309bd2 (diff) | |
download | servo-d31cdb682f717d6dbdbd57d60855fd92d822cd66.tar.gz servo-d31cdb682f717d6dbdbd57d60855fd92d822cd66.zip |
Make the choice of layout runtime setting
Co-authored-by: Samson <16504129+sagudev@users.noreply.github.com>
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 9faf325f4a7..afc0856767a 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -859,11 +859,6 @@ class CommandBase(object): action='store_true', help='Build with frame pointer enabled, used by the background hang monitor.', ), - CommandArgument( - '--with-layout-2020', '--layout-2020', - group="Feature Selection", default=None, action='store_true'), - CommandArgument( - '--with-layout-2013', '--layout-2013', group="Feature Selection", default=None, action='store_true'), CommandArgument('--without-wgl', group="Feature Selection", default=None, action='store_true'), ] @@ -961,10 +956,6 @@ class CommandBase(object): features.append("native-bluetooth") - if with_layout_2020 or (self.config["build"]["layout-2020"] and not with_layout_2013): - features.append("layout-2020") - elif "layout-2020" not in features: - features.append("layout-2013") if with_frame_pointer: env['RUSTFLAGS'] = env.get('RUSTFLAGS', "") + " -C force-frame-pointers=yes" features.append("profilemozjs") |