diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-08-14 16:44:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-14 14:44:47 +0000 |
commit | 78c70112405508354b6ed8461d4e1c81c933f721 (patch) | |
tree | ec49724a74a930324832c65bf65fabbc8c0a82e0 /python/servo/command_base.py | |
parent | 1d79f5dad2a8b006bddf1cabec519f21a1fe6d31 (diff) | |
download | servo-78c70112405508354b6ed8461d4e1c81c933f721.tar.gz servo-78c70112405508354b6ed8461d4e1c81c933f721.zip |
Make `native-bluetooth` a default feature (#30097)
This features is turned on unconditionally by `./mach build`.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index e48d96ce12c..b56fabbcd5b 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -900,8 +900,6 @@ class CommandBase(object): if self.config["build"]["debug-mozjs"] or debug_mozjs: features.append("debugmozjs") - features.append("native-bluetooth") - if with_frame_pointer: env['RUSTFLAGS'] = env.get('RUSTFLAGS', "") + " -C force-frame-pointers=yes" features.append("profilemozjs") |